aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/main.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-28 18:27:54 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-28 18:33:22 -0800
commitbac39b54828b115e6ff35b977479d5e48dfa6ab5 (patch)
tree0054882beeef79eff235d896a4f0e1c8271483ea /qt-mobile/qml/main.qml
parentc52769a90fcb26fadfc56b1584a03ddfa76b24dd (diff)
downloadsubsurface-bac39b54828b115e6ff35b977479d5e48dfa6ab5.tar.gz
Better id for yet another QML item
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r--qt-mobile/qml/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml
index 6762676f9..3b81c615e 100644
--- a/qt-mobile/qml/main.qml
+++ b/qt-mobile/qml/main.qml
@@ -219,7 +219,7 @@ MobileComponents.ApplicationWindow {
property Item stackView: pageStack
initialPage: DiveList {
anchors.fill: detailsPage
- id: diveDetails
+ id: diveList
opacity: 0
Behavior on opacity {
NumberAnimation {
@@ -273,7 +273,7 @@ MobileComponents.ApplicationWindow {
Component.onCompleted: {
manager.finishSetup();
rootItem.visible = true
- diveDetails.opacity = 1
+ diveList.opacity = 1
rootItem.opacity = 1
}
Behavior on opacity {