diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-28 18:27:54 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-28 18:33:22 -0800 |
commit | bac39b54828b115e6ff35b977479d5e48dfa6ab5 (patch) | |
tree | 0054882beeef79eff235d896a4f0e1c8271483ea /qt-mobile/qml/main.qml | |
parent | c52769a90fcb26fadfc56b1584a03ddfa76b24dd (diff) | |
download | subsurface-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.qml | 4 |
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 { |