diff options
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 70c9de9fc..f80061a29 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -55,7 +55,7 @@ Kirigami.ApplicationWindow { } function showBusy(msg) { - if (msg !== undefined) + if (msg !== undefined && msg !== "") showPassiveNotification(msg, 15000) // show for 15 seconds busy.running = true } @@ -282,7 +282,7 @@ Kirigami.ApplicationWindow { pageStack.pop() } diveList.diveListModel = diveModel - pageStack.push(diveList) + showDiveList() hideBusy() } } |