diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-07-15 14:23:14 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-07-15 14:23:14 +0000 |
| commit | 170258028dc1a4381c7a5d85b3ce1ac3f5b2f867 (patch) | |
| tree | 9f79bb667212c7a33522014eaa985c3b77bc20c3 | |
| parent | e5d282ba9f65419f3897287cfe6bfe4d3cbfd179 (diff) | |
| download | rockbox-170258028dc1a4381c7a5d85b3ce1ac3f5b2f867.zip rockbox-170258028dc1a4381c7a5d85b3ce1ac3f5b2f867.tar.gz rockbox-170258028dc1a4381c7a5d85b3ce1ac3f5b2f867.tar.bz2 rockbox-170258028dc1a4381c7a5d85b3ce1ac3f5b2f867.tar.xz | |
Color targets: When showing the bookmark screen from within the wps, switch to normal backdrop first.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10215 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/bookmark.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index c8c6f94..850514c 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -214,6 +214,9 @@ bool bookmark_autobookmark(void) str(LANG_RESUME_CONFIRM_PLAYER)}; struct text_message message={(char **)lines, 2}; #endif +#ifdef HAVE_LCD_COLOR + show_main_backdrop(); /* switch to main backdrop as we may come from wps */ +#endif gui_syncstatusbar_draw(&statusbars, false); if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) { |