From 046cce6f433b44f7cf5e0498b339ef14f4e8b69a Mon Sep 17 00:00:00 2001 From: pelgraine <140762863+pelgraine@users.noreply.github.com> Date: Tue, 17 Mar 2026 18:55:10 +1100 Subject: [PATCH] tdpro - bugfix for slow responsiveness occurring if key is pressed during toaster popup message --- examples/companion_radio/ui-new/UITask.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index b0e4f6d..671910b 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -1333,6 +1333,8 @@ void UITask::userLedHandler() { void UITask::setCurrScreen(UIScreen* c) { curr = c; + _alert_expiry = 0; // Dismiss any active toast — prevents stale overlay from + // triggering extra 644ms e-ink refreshes on the new screen _next_refresh = 100; }