diff options
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index cd8635b63..17ae7ad7b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -68,11 +68,19 @@ Kirigami.ApplicationWindow { function showBusy() { busy.running = true + } + + function showBusyAndDisconnectModel() { // this is used by QMLManager when operating the filter + busy.running = true diveList.diveListModel = null } function hideBusy() { busy.running = false + } + + function hideBusyAndConnectModel() { // this is used by QMLManager when done filtering + busy.running = false diveList.diveListModel = diveModel } |