diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-05-01 11:19:54 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-05-01 11:19:54 -0700 |
commit | 22e225fc77105c32abf780c779e3a4fe12f79a6d (patch) | |
tree | 3106afcc9003070509809b77cc0e10d9a95f78e4 | |
parent | c2c0cb48d2b08935037b37555209571adb7d796e (diff) | |
download | subsurface-22e225fc77105c32abf780c779e3a4fe12f79a6d.tar.gz |
QML UI: Left align all labels in DiveDetailsView
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index cec490815..9ad229e20 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -62,7 +62,6 @@ Item { id: dateLabel text: "Date: " opacity: 0.6 - Layout.alignment: Qt.AlignRight } Kirigami.Label { text: dive.date + " " + dive.time @@ -80,7 +79,6 @@ Item { id: depthLabel text: "Depth: " opacity: 0.6 - Layout.alignment: Qt.AlignRight } Kirigami.Label { text: dive.depth |