From d78be6716b504b00a4bf9b1d637bdb878f303063 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Tue, 10 Oct 2023 10:01:52 -0400 Subject: [BUGFIX] block SYS_EVENTS from some action switches fixes some of the places where SYS EVENTS cause issues with action switches that don't have handling for system events more exist.. Change-Id: Ie6f4b05ed7ef1119d43e65ee49be8f754af83f52 --- apps/debug_menu.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/debug_menu.c') diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 6794b3fe9f..5b73f8badd 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -209,6 +209,10 @@ static int dbg_threads_action_callback(int action, struct gui_synclist *lists) *x_offset += 1; action = ACTION_REDRAW; } + else if (IS_SYSEVENT(action)) + { + return ACTION_REDRAW; + } else if (action != ACTION_UNKNOWN) { *x_offset = 0; -- cgit v1.2.3