summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
commitf7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch)
treea24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/plugins
parent9d756e2760a0926aa416b22e276c4a5b2685e84e (diff)
downloadrockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz
rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip
remove the need for action_signalscreenchange().
Fixes problems with targets where the ACTION_STD_CANCEL event is a combo git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lib/oldmenuapi.c3
-rw-r--r--apps/plugins/properties.c1
2 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugins/lib/oldmenuapi.c b/apps/plugins/lib/oldmenuapi.c
index e804a64d62..dbe151daf9 100644
--- a/apps/plugins/lib/oldmenuapi.c
+++ b/apps/plugins/lib/oldmenuapi.c
@@ -95,7 +95,6 @@ int menu_show(int m)
95 int key; 95 int key;
96 96
97 rb->gui_synclist_draw(&(menus[m].synclist)); 97 rb->gui_synclist_draw(&(menus[m].synclist));
98 rb->action_signalscreenchange();
99 rb->gui_syncstatusbar_draw(rb->statusbars, true); 98 rb->gui_syncstatusbar_draw(rb->statusbars, true);
100 while (!exit) { 99 while (!exit) {
101 key = rb->get_action(CONTEXT_MAINMENU,HZ/2); 100 key = rb->get_action(CONTEXT_MAINMENU,HZ/2);
@@ -111,7 +110,6 @@ int menu_show(int m)
111 rb->gui_synclist_do_button(&(menus[m].synclist), key,LIST_WRAP_UNLESS_HELD); 110 rb->gui_synclist_do_button(&(menus[m].synclist), key,LIST_WRAP_UNLESS_HELD);
112 switch( key ) { 111 switch( key ) {
113 case ACTION_STD_OK: 112 case ACTION_STD_OK:
114 rb->action_signalscreenchange();
115 return rb->gui_synclist_get_sel_pos(&(menus[m].synclist)); 113 return rb->gui_synclist_get_sel_pos(&(menus[m].synclist));
116 114
117 115
@@ -127,7 +125,6 @@ int menu_show(int m)
127 } 125 }
128 rb->gui_syncstatusbar_draw(rb->statusbars, false); 126 rb->gui_syncstatusbar_draw(rb->statusbars, false);
129 } 127 }
130 rb->action_signalscreenchange();
131 return MENU_SELECTED_EXIT; 128 return MENU_SELECTED_EXIT;
132} 129}
133 130
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 86817e2cc7..bc95548afe 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -295,7 +295,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
295 } 295 }
296 } 296 }
297 rb->global_settings->statusbar = prev_show_statusbar; 297 rb->global_settings->statusbar = prev_show_statusbar;
298 rb->action_signalscreenchange();
299 298
300 return PLUGIN_OK; 299 return PLUGIN_OK;
301} 300}