From fb94dd0c4aba0c9e8951041080c45716a2e24889 Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 10 Sep 2025 11:19:11 -0400 Subject: [PATCH] fix notifs --- Services/NotificationService.qml | 3 --- Services/ToastService.qml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Services/NotificationService.qml b/Services/NotificationService.qml index 074bd207..b7271d73 100644 --- a/Services/NotificationService.qml +++ b/Services/NotificationService.qml @@ -341,9 +341,6 @@ Singleton { readonly property string summary: notification.summary readonly property string body: notification.body readonly property string htmlBody: { - if (!popup && !root.popupsDisabled) { - return "" - } if (body && (body.includes('<') && body.includes('>'))) { return body } diff --git a/Services/ToastService.qml b/Services/ToastService.qml index aa987e1b..1c9c07e0 100644 --- a/Services/ToastService.qml +++ b/Services/ToastService.qml @@ -72,7 +72,7 @@ Singleton { toastTimer.interval = 8000 toastTimer.start() } else { - toastTimer.interval = toast.level === levelError ? 5000 : toast.level === levelWarn ? 4000 : 3000 + toastTimer.interval = toast.level === levelError ? 5000 : toast.level === levelWarn ? 3000 : 1500 toastTimer.start() } }