mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Bugfix: (un)locking state message(s) did not disappear
after unlocking the device while being into FM radio screen. This patch restores expected behaviour by forcing screen refresh when receiving the proper event. Change-Id: Ibe0864ab78619ddf235912d06a2efe3203b5042a Reviewed-on: http://gerrit.rockbox.org/505 Reviewed-by: Lorenzo Miori <memorys60@gmail.com> Tested-by: Lorenzo Miori <memorys60@gmail.com> Reviewed-by: Thomas Martitz <kugel@rockbox.org>
This commit is contained in:
parent
8fcce9653f
commit
228372c38d
1 changed files with 5 additions and 0 deletions
|
@ -689,6 +689,11 @@ void radio_screen(void)
|
||||||
case ACTION_NONE:
|
case ACTION_NONE:
|
||||||
update_type = SKIN_REFRESH_NON_STATIC;
|
update_type = SKIN_REFRESH_NON_STATIC;
|
||||||
break;
|
break;
|
||||||
|
/* this case is used by the softlock feature
|
||||||
|
* it requests a full update here */
|
||||||
|
case ACTION_REDRAW:
|
||||||
|
skin_request_full_update(FM_SCREEN);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
default_event_handler(button);
|
default_event_handler(button);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue