diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-06-21 11:53:16 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-06-21 11:53:19 -0700 |
commit | 4651454557dd3549a250263d34f3cd1b55b18c73 (patch) | |
tree | 404b58e0a0d6ffd6f57fe57efcd454a5d1452855 /mobile-widgets/qml/DiveList.qml | |
parent | 02d8c98c9389d343c9f7be3918032867f57197a3 (diff) | |
download | subsurface-4651454557dd3549a250263d34f3cd1b55b18c73.tar.gz |
QML UI: don't reduce opacity for background of selected dive
Now that we have distinct colors for trip header and selected dive, this
is actually counter productive.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 52d65d9af..22a0e78e5 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -31,7 +31,6 @@ Kirigami.ScrollablePage { checked: diveListView.currentIndex === model.index width: parent.width height: diveListEntry.height + Kirigami.Units.smallSpacing - background.opacity: checked ? 0.8 : 1 backgroundColor: checked ? subsurfaceTheme.primaryColor : Kirigami.Theme.viewBackgroundColor textColor: checked ? subsurfaceTheme.primaryTextColor : subsurfaceTheme.diveListTextColor |