diff options
-rw-r--r-- | mobile-widgets/qml/main.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 730df292e..ae50d8dc7 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -296,14 +296,16 @@ Kirigami.ApplicationWindow { } text: qsTr("Apply GPS fixes") onTriggered: { + globalDrawer.close() showBusy() + diveList.diveListModel = null manager.applyGpsData() - globalDrawer.close() diveModel.resetInternalData() manager.refreshDiveList() while (pageStack.depth > 1) { pageStack.pop() } + diveList.diveListModel = diveModel pageStack.push(diveList) hideBusy() } |