diff options
author | Marco Martin <notmart@gmail.com> | 2015-11-30 01:14:43 +0100 |
---|---|---|
committer | Sebastian Kügler <sebas@kde.org> | 2015-11-30 02:43:40 +0100 |
commit | 092677687744b7798d0603b10b884916d6962d7e (patch) | |
tree | c395ffa16c37120c413dde9f62776660665ef201 | |
parent | cf9476c74e3479b9a4b5ea0060ebafc880107ee3 (diff) | |
download | subsurface-092677687744b7798d0603b10b884916d6962d7e.tar.gz |
Align the labels ar right
uniform look for forms: labels aligned at
the right, fileds at the left
Signed-off-by: Marco Martin <notmart@gmail.com>
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index 14cf8dcc4..d07cdcae9 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -92,6 +92,7 @@ MobileComponents.Page { } } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Location:" } TextField { @@ -100,6 +101,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Air Temp:" } TextField { @@ -109,6 +111,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Water Temp:" } TextField { @@ -118,6 +121,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Suit:" } @@ -128,6 +132,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Buddy:" } TextField { @@ -137,6 +142,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Dive Master:" } TextField { @@ -146,6 +152,7 @@ MobileComponents.Page { } MobileComponents.Label { + Layout.alignment: Qt.AlignRight text: "Notes:" } TextEdit{ |