diff options
Diffstat (limited to 'qt-mobile/qml/DiveList.qml')
-rw-r--r-- | qt-mobile/qml/DiveList.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-mobile/qml/DiveList.qml b/qt-mobile/qml/DiveList.qml index afb0c3686..b731a34d5 100644 --- a/qt-mobile/qml/DiveList.qml +++ b/qt-mobile/qml/DiveList.qml @@ -170,6 +170,7 @@ Rectangle { StartPage { anchors.fill: parent opacity: (diveModel.rowCount() == 0) ? 1.0 : 0 + visible: opacity > 0 Behavior on opacity { NumberAnimation { duration: units.shortDuration } } Component.onCompleted: { print("diveModel.count " + diveModel.rowCount()); |