summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index ca74c452f4..f461c02f77 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -565,6 +565,7 @@ static void gwps_leave_wps(void)
FOR_NB_SCREENS(i)
{
gui_wps[i].display->stop_scroll();
+ gui_wps[i].display->backdrop_show(sb_get_backdrop(i));
#ifdef HAVE_LCD_BITMAP
bool draw = false;
@@ -601,9 +602,10 @@ static void gwps_enter_wps(void)
else if (statusbar_position(i) != STATUSBAR_OFF)
draw = true;
#endif
+ display->stop_scroll();
+ display->backdrop_show(gwps->data->backdrop);
viewportmanager_theme_enable(i, draw, NULL);
- display->stop_scroll();
/* Update the values in the first (default) viewport - in case the user
has modified the statusbar or colour settings */
#if LCD_DEPTH > 1