aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-24 11:19:56 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-24 11:19:56 -0700
commit49a368539ab56f9ca32d39b98ac5b9573b92a705 (patch)
tree42684456de1a8f3d86b4b2a92b248663efb48e4c
parente3cd6719c12cb9bd1b35800918792564770929b5 (diff)
downloadsubsurface-49a368539ab56f9ca32d39b98ac5b9573b92a705.tar.gz
QML UI: set opacity of 1 for dive list
Hopefully with this we get exactly the right colors. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--mobile-widgets/qml/DiveList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index 27ab28cb2..07075bc36 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -281,7 +281,7 @@ Kirigami.ScrollablePage {
ListView {
id: diveListView
anchors.fill: parent
- opacity: 0.8 - startPage.opacity
+ opacity: 1.0 - startPage.opacity
visible: opacity > 0
model: diveModel
currentIndex: -1