1
0
Fork 0
forked from len0rd/rockbox

make the fms update

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27304 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-07-06 08:06:59 +00:00
parent 35717ec06e
commit 079e19491a

View file

@ -734,6 +734,9 @@ int radio_screen(void)
talk = true; talk = true;
break; break;
#endif #endif
case ACTION_NONE:
update_screen = true; /* so the fms updates */
break;
default: default:
default_event_handler(button); default_event_handler(button);
@ -810,7 +813,8 @@ int radio_screen(void)
if (restore) if (restore)
fms_fix_displays(FMS_ENTER); fms_fix_displays(FMS_ENTER);
FOR_NB_SCREENS(i) FOR_NB_SCREENS(i)
skin_update(fms_get(i), WPS_REFRESH_ALL); skin_update(fms_get(i), restore ? WPS_REFRESH_ALL :
WPS_REFRESH_NON_STATIC);
restore = false; restore = false;
} }
} }