aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Sebastian Kügler <sebas@kde.org>2015-12-07 18:38:01 +0100
committerGravatar Sebastian Kügler <sebas@kde.org>2015-12-07 18:46:57 +0100
commit25e83a11e7787484744194cb33be9da9941510b6 (patch)
tree02de3b356a8aade2b969cb47324d611df25b14df
parent04b6446e72496139b9f8bde8d7d680edf270422d (diff)
downloadsubsurface-25e83a11e7787484744194cb33be9da9941510b6.tar.gz
Fix text clipping
-rw-r--r--qt-mobile/qml/DiveDetailsView.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-mobile/qml/DiveDetailsView.qml b/qt-mobile/qml/DiveDetailsView.qml
index 099bf13eb..75c17c3ad 100644
--- a/qt-mobile/qml/DiveDetailsView.qml
+++ b/qt-mobile/qml/DiveDetailsView.qml
@@ -28,6 +28,7 @@ GridLayout {
Layout.fillWidth: true
text: location
Layout.columnSpan: 4
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -93,6 +94,7 @@ GridLayout {
id: txtAirTemp
text: airtemp
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -104,6 +106,7 @@ GridLayout {
id: txtWaterTemp
text: watertemp
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -115,6 +118,7 @@ GridLayout {
id: txtSuit
text: suit
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -126,6 +130,7 @@ GridLayout {
id: txtWeight
text: weight
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -137,6 +142,7 @@ GridLayout {
id: txtBuddy
text: buddy
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Label {
@@ -148,6 +154,7 @@ GridLayout {
id: txtDiveMaster
text: divemaster
Layout.fillWidth: true
+ wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
MobileComponents.Heading {