diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-06-20 11:59:51 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-06-20 11:59:51 -0700 |
commit | cbcb43247ef7537dff23886002fcdf5e41518ad9 (patch) | |
tree | e7b93a312b02649b1a94b94138c6a1e2741dc471 /mobile-widgets/qml/DiveDetailsView.qml | |
parent | 4f34513277ed93626d2897ca5d636defa83abbff (diff) | |
download | subsurface-cbcb43247ef7537dff23886002fcdf5e41518ad9.tar.gz |
QML UI: DiveDetailsView: make the lower section less busy
This removes fairly redundant text (yes, we know those are the Dive Details) and
makes the label for the Notes consistent with all the other labels.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsView.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index 74adbb980..63eb8675d 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -129,12 +129,6 @@ Item { horizontalAlignment: Text.AlignHCenter text: qsTr("No profile to show") } - Kirigami.Heading { - Layout.fillWidth: true - level: 3 - text: qsTr("Dive Details") - Layout.columnSpan: 3 - } // first row //----------- @@ -282,9 +276,9 @@ Item { } - Kirigami.Heading { + Kirigami.Label { Layout.fillWidth: true - level: 3 + opacity: 0.6 text: qsTr("Notes") wrapMode: Text.WrapAtWordBoundaryOrAnywhere Layout.columnSpan: 3 |