From f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 22 Jul 2007 06:05:53 +0000 Subject: 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 --- apps/bookmark.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'apps/bookmark.c') diff --git a/apps/bookmark.c b/apps/bookmark.c index f36545f..2f4f696 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -406,7 +406,6 @@ bool bookmark_autoload(const char* file) return bookmark_load(global_bookmark_file_name, true); } - action_signalscreenchange(); return false; } } @@ -622,7 +621,6 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu gui_synclist_set_title(&list, str(LANG_BOOKMARK_SELECT_BOOKMARK), Icon_Bookmark); gui_syncstatusbar_draw(&statusbars, true); - action_signalscreenchange(); while (!exit) { @@ -638,7 +636,6 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu /* No more bookmarks, delete file and exit */ gui_syncsplash(HZ, str(LANG_BOOKMARK_LOAD_EMPTY)); remove(bookmark_file_name); - action_signalscreenchange(); return NULL; } @@ -710,7 +707,6 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu case ACTION_STD_OK: if (item >= 0) { - action_signalscreenchange(); return bookmarks->items[item - bookmarks->start]; } @@ -741,7 +737,6 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu } } - action_signalscreenchange(); return NULL; } -- cgit v1.1