From 94139ac0bd3e1ca5d384ac8ac5ad2a915d633a82 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Tue, 20 Mar 2012 21:27:33 +1100 Subject: Fix FS#12606 - next track can cause the screen to be cleared This is a bit of a hack. We now trigger an event when the skin engine is doing a full redraw (which means fullscreen clear) before the lcd_update() to give the current screen a chance to redraw to avoid the screen flicker. This commit fixes the issue for screens which are entirely the list widget (i.e browser and menus), other screens will need aditional fixes (i.e quickscreen, time&date screen) Change-Id: I3725c51518be724ce7aacee9877663c2de6866fa --- apps/gui/list.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'apps/gui/list.c') diff --git a/apps/gui/list.c b/apps/gui/list.c index d1b2748a60..5af4501b45 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -596,6 +596,25 @@ bool gui_synclist_keyclick_callback(int action, void* data) } #endif +/* + * Magic to make sure the list gets updated correctly if the skin does + * something naughty like a full screen update when we are in a button + * loop. + * + * The GUI_EVENT_NEED_UI_UPDATE event is registered for in list_do_action_timeout() + * and unregistered in gui_synclict_do_button(). This is done because + * if something is using the list UI they *must* be calling those + * two functions in the correct order or the list wont work. + */ +static struct gui_synclist *current_lists; +static bool ui_update_event_registered = false; +void _lists_uiviewport_update_callback(void *data) +{ + (void)data; + if (current_lists) + gui_synclist_draw(current_lists); +} + bool gui_synclist_do_button(struct gui_synclist * lists, int *actionptr, enum list_wrap wrap) { @@ -643,6 +662,9 @@ bool gui_synclist_do_button(struct gui_synclist * lists, _gui_synclist_stop_kinetic_scrolling(); #endif + /* Disable the skin redraw callback */ + current_lists = NULL; + switch (wrap) { case LIST_WRAP_ON: @@ -772,6 +794,14 @@ int list_do_action_timeout(struct gui_synclist *lists, int timeout) /* Returns the lowest of timeout or the delay until a postponed scheduled announcement is due (if any). */ { + if (lists != current_lists) + { + if (!ui_update_event_registered) + ui_update_event_registered = + add_event(GUI_EVENT_NEED_UI_UPDATE, false, + _lists_uiviewport_update_callback); + current_lists = lists; + } if(lists->scheduled_talk_tick) { long delay = lists->scheduled_talk_tick -current_tick +1; -- cgit v1.2.3