diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-27 13:38:34 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-28 02:21:20 +0900 |
commit | 2d353a756be2a8469c4a8596303b334ad85beae8 (patch) | |
tree | c0cc8c9c99560a9129a8ae7aeada80b21047d4d0 /mobile-widgets/qml/main.qml | |
parent | af1ca2af819e6b9de199a2f3c892135f872a2f6f (diff) | |
download | subsurface-2d353a756be2a8469c4a8596303b334ad85beae8.tar.gz |
mobile-widgets/qml: correct first view of divelist
pageStack.initPage cannot be used as a function and causes an error
Replace with showDiveList()
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 202027852..6e832547b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -823,7 +823,7 @@ if you have network connectivity and want to sync your data to cloud storage."), Component.onCompleted: { if (!visible) { - pageStack.initPage = diveList + showDiveList() } } } |