From 6239e5a8e4d182db6d2cc65a03603ad90674c8a7 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 19 Jul 2026 11:47:39 -0400 Subject: [PATCH] mango: suppress excessive reload messages fixes #2848 port 1.5 --- quickshell/Services/MangoService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Services/MangoService.qml b/quickshell/Services/MangoService.qml index d2f6c9df1..e815dd761 100644 --- a/quickshell/Services/MangoService.qml +++ b/quickshell/Services/MangoService.qml @@ -467,7 +467,7 @@ Singleton { if (now - root._lastWatchedReloadAt < 700) return; root._lastWatchedReloadAt = now; - root.reloadConfig(true, false); + root.reloadConfig(false, false); } function reloadConfig(showToast, suppressWatch) {