mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile/UI: stop using removed Kirigami interface
hidePassiveNotification() is no longer supported. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
bed11f79a1
commit
40a0916de8
1 changed files with 4 additions and 2 deletions
|
@ -44,7 +44,8 @@ Kirigami.ApplicationWindow {
|
||||||
// to mean that we want to simply over-write the last line, not create a new one
|
// to mean that we want to simply over-write the last line, not create a new one
|
||||||
if (initialized) {
|
if (initialized) {
|
||||||
// make sure any old notification is hidden
|
// make sure any old notification is hidden
|
||||||
hidePassiveNotification()
|
// hiding notifications is no longer supported????
|
||||||
|
// hidePassiveNotification()
|
||||||
if (notificationText !== "") {
|
if (notificationText !== "") {
|
||||||
// there's a risk that we have a >5 second gap in update events;
|
// 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
|
// still, keep the timeout at 5s to avoid odd unchanging notifications
|
||||||
|
@ -72,7 +73,8 @@ Kirigami.ApplicationWindow {
|
||||||
|
|
||||||
function hideBusy() {
|
function hideBusy() {
|
||||||
busy.running = false
|
busy.running = false
|
||||||
hidePassiveNotification()
|
// hiding notifications is no longer supported???
|
||||||
|
// hidePassiveNotification()
|
||||||
}
|
}
|
||||||
|
|
||||||
function returnTopPage() {
|
function returnTopPage() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue