diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-21 13:44:53 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-21 13:44:53 -0800 |
commit | 40a0916de87fdb3d7023f830cbbefdf9cfc5b177 (patch) | |
tree | 614d0757d593fc84b3a28df8c93e7228af8faf77 /mobile-widgets/qml | |
parent | bed11f79a1392c2f13f56c47e1a50c989c40f328 (diff) | |
download | subsurface-40a0916de87fdb3d7023f830cbbefdf9cfc5b177.tar.gz |
mobile/UI: stop using removed Kirigami interface
hidePassiveNotification() is no longer supported.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index c1f8ae9c5..26a2f6cf5 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -44,7 +44,8 @@ Kirigami.ApplicationWindow { // to mean that we want to simply over-write the last line, not create a new one if (initialized) { // make sure any old notification is hidden - hidePassiveNotification() + // hiding notifications is no longer supported???? + // hidePassiveNotification() if (notificationText !== "") { // there's a risk that we have a >5 second gap in update events; // still, keep the timeout at 5s to avoid odd unchanging notifications @@ -72,7 +73,8 @@ Kirigami.ApplicationWindow { function hideBusy() { busy.running = false - hidePassiveNotification() + // hiding notifications is no longer supported??? + // hidePassiveNotification() } function returnTopPage() { |