1
0
Fork 0
forked from len0rd/rockbox

[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
This commit is contained in:
William Wilgus 2023-10-10 10:01:52 -04:00 committed by William Wilgus
parent d77c417fd1
commit d78be6716b
4 changed files with 21 additions and 12 deletions

View file

@ -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;