From 4c27c84b5f6a2c92d19ae9e691fc5ee03350189f Mon Sep 17 00:00:00 2001 From: Jason P Date: Sat, 27 Dec 2025 21:13:33 -0600 Subject: [PATCH] Remove banner notification, we display the icon immediately --- src/graphics/draw/MenuHandler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/graphics/draw/MenuHandler.cpp b/src/graphics/draw/MenuHandler.cpp index 79039c5d0..713b2f68b 100644 --- a/src/graphics/draw/MenuHandler.cpp +++ b/src/graphics/draw/MenuHandler.cpp @@ -884,8 +884,7 @@ void menuHandler::homeBaseMenu() if (moduleConfig.external_notification.enabled && externalNotificationModule) { bool isMuted = externalNotificationModule->getMute(); externalNotificationModule->setMute(!isMuted); - IF_SCREEN(graphics::isMuted = !isMuted; if (!isMuted) externalNotificationModule->stopNow(); - screen->showSimpleBanner(isMuted ? "Notifications\nEnabled" : "Notifications\nDisabled", 3000);) + IF_SCREEN(graphics::isMuted = !isMuted; if (!isMuted) externalNotificationModule->stopNow();) } } else if (selected == Backlight) { screen->setOn(false);