summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-08 17:19:15 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-08 17:19:15 +0000
commit9955e9a7df32418f20a8de27a3787d35bb9436f4 (patch)
treed8646454a9588e516d86813c733f91e122dc966b
parentba45adbafca9677e6c40e01b6d0ed1f5f0cfa79b (diff)
downloadrockbox-9955e9a7df32418f20a8de27a3787d35bb9436f4.tar.gz
rockbox-9955e9a7df32418f20a8de27a3787d35bb9436f4.zip
unconditioannly show the main/base skins backdrop when enabling the theme so plugins show the correct backdrop in menus
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24568 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/viewport.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/viewport.c b/apps/gui/viewport.c
index 4b89608458..08cb9601e0 100644
--- a/apps/gui/viewport.c
+++ b/apps/gui/viewport.c
@@ -111,6 +111,9 @@ static void toggle_theme(enum screen_type screen, bool force)
111 { 111 {
112 /* remove the left overs from the previous screen. 112 /* remove the left overs from the previous screen.
113 * could cause a tiny flicker. Redo your screen code if that happens */ 113 * could cause a tiny flicker. Redo your screen code if that happens */
114#if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
115 screens[i].backdrop_show(sb_get_backdrop(i));
116#endif
114 if (!was_enabled[screen] || force) 117 if (!was_enabled[screen] || force)
115 { 118 {
116 struct viewport deadspace, user; 119 struct viewport deadspace, user;