summaryrefslogtreecommitdiffstats
path: root/apps/gui
diff options
context:
space:
mode:
authorAlex Parker <rockbox@aeparker.com>2010-02-08 22:34:04 +0000
committerAlex Parker <rockbox@aeparker.com>2010-02-08 22:34:04 +0000
commit3e4e67b408239ea8cfdc201ca1ec031eb4dbc93d (patch)
tree8bed57aa5428a7942225cc3b11a3bf79430766c2 /apps/gui
parent1cc4bd8f86cf013813d52aeb2c8aa37989026dfc (diff)
downloadrockbox-3e4e67b408239ea8cfdc201ca1ec031eb4dbc93d.tar.gz
rockbox-3e4e67b408239ea8cfdc201ca1ec031eb4dbc93d.zip
Fix WPS backdrop drawing, as instructed by JdGordon.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24571 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/wps.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index abe8023938..108cb19398 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -605,9 +605,6 @@ static void gwps_enter_wps(void)
draw = true;
#endif
display->stop_scroll();
-#if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
- display->backdrop_show(gwps->data->backdrop);
-#endif
viewportmanager_theme_enable(i, draw, NULL);
/* Update the values in the first (default) viewport - in case the user
@@ -621,6 +618,9 @@ static void gwps_enter_wps(void)
}
#endif
/* make the backdrop actually take effect */
+#if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
+ display->backdrop_show(gwps->data->backdrop);
+#endif
display->clear_display();
skin_update(gwps, WPS_REFRESH_ALL);
}