diff options
Diffstat (limited to 'apps/gui')
-rw-r--r-- | apps/gui/list.c | 22 | ||||
-rw-r--r-- | apps/gui/skin_engine/skin_render.c | 8 |
2 files changed, 0 insertions, 30 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c index 96b3447728..d1b2748a60 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c | |||
@@ -596,23 +596,6 @@ bool gui_synclist_keyclick_callback(int action, void* data) | |||
596 | } | 596 | } |
597 | #endif | 597 | #endif |
598 | 598 | ||
599 | /* | ||
600 | * Magic to make sure the list gets updated correctly if the skin does | ||
601 | * something naughty like a full screen update when we are in a button | ||
602 | * loop. | ||
603 | * | ||
604 | * The GUI_EVENT_NEED_UI_UPDATE event is registered for in list_do_action_timeout() | ||
605 | * and unregistered in gui_synclict_do_button(). This is done because | ||
606 | * if something is using the list UI they *must* be calling those | ||
607 | * two functions in the correct order or the list wont work. | ||
608 | */ | ||
609 | static struct gui_synclist *current_lists; | ||
610 | void _lists_uiviewport_update_callback(void *data) | ||
611 | { | ||
612 | (void)data; | ||
613 | gui_synclist_draw(current_lists); | ||
614 | } | ||
615 | |||
616 | bool gui_synclist_do_button(struct gui_synclist * lists, | 599 | bool gui_synclist_do_button(struct gui_synclist * lists, |
617 | int *actionptr, enum list_wrap wrap) | 600 | int *actionptr, enum list_wrap wrap) |
618 | { | 601 | { |
@@ -627,8 +610,6 @@ bool gui_synclist_do_button(struct gui_synclist * lists, | |||
627 | static int next_item_modifier = 1; | 610 | static int next_item_modifier = 1; |
628 | static int last_accel_tick = 0; | 611 | static int last_accel_tick = 0; |
629 | 612 | ||
630 | remove_event(GUI_EVENT_NEED_UI_UPDATE, _lists_uiviewport_update_callback); | ||
631 | |||
632 | if (action != ACTION_TOUCHSCREEN) | 613 | if (action != ACTION_TOUCHSCREEN) |
633 | { | 614 | { |
634 | if (global_settings.list_accel_start_delay) | 615 | if (global_settings.list_accel_start_delay) |
@@ -791,9 +772,6 @@ int list_do_action_timeout(struct gui_synclist *lists, int timeout) | |||
791 | /* Returns the lowest of timeout or the delay until a postponed | 772 | /* Returns the lowest of timeout or the delay until a postponed |
792 | scheduled announcement is due (if any). */ | 773 | scheduled announcement is due (if any). */ |
793 | { | 774 | { |
794 | current_lists = lists; | ||
795 | add_event(GUI_EVENT_NEED_UI_UPDATE, false, | ||
796 | _lists_uiviewport_update_callback); | ||
797 | if(lists->scheduled_talk_tick) | 775 | if(lists->scheduled_talk_tick) |
798 | { | 776 | { |
799 | long delay = lists->scheduled_talk_tick -current_tick +1; | 777 | long delay = lists->scheduled_talk_tick -current_tick +1; |
diff --git a/apps/gui/skin_engine/skin_render.c b/apps/gui/skin_engine/skin_render.c index 965d785233..80d8c83d27 100644 --- a/apps/gui/skin_engine/skin_render.c +++ b/apps/gui/skin_engine/skin_render.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include "config.h" | 29 | #include "config.h" |
30 | #include "core_alloc.h" | 30 | #include "core_alloc.h" |
31 | #include "kernel.h" | 31 | #include "kernel.h" |
32 | #include "appevents.h" | ||
33 | #ifdef HAVE_ALBUMART | 32 | #ifdef HAVE_ALBUMART |
34 | #include "albumart.h" | 33 | #include "albumart.h" |
35 | #endif | 34 | #endif |
@@ -860,13 +859,6 @@ void skin_render(struct gui_wps *gwps, unsigned refresh_mode) | |||
860 | display->set_framebuffer(NULL); | 859 | display->set_framebuffer(NULL); |
861 | skin_backdrop_show(data->backdrop_id); | 860 | skin_backdrop_show(data->backdrop_id); |
862 | #endif | 861 | #endif |
863 | |||
864 | if (((refresh_mode&SKIN_REFRESH_ALL) == SKIN_REFRESH_ALL)) | ||
865 | { | ||
866 | /* If this is the UI viewport then let the UI know | ||
867 | * to redraw itself */ | ||
868 | send_event(GUI_EVENT_NEED_UI_UPDATE, NULL); | ||
869 | } | ||
870 | /* Restore the default viewport */ | 862 | /* Restore the default viewport */ |
871 | display->set_viewport(NULL); | 863 | display->set_viewport(NULL); |
872 | display->update(); | 864 | display->update(); |