diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-01-26 21:29:08 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-01-26 21:29:08 +0000 |
| commit | e8ae70a3829d6b43846dc9f3585fedec883dc386 (patch) | |
| tree | 2de25ac75eed42a0d2e0d115f4ab80428559a06b /apps | |
| parent | 5629d551d710bd57a1cef129ce5a69b76cbbdd12 (diff) | |
| download | rockbox-e8ae70a3829d6b43846dc9f3585fedec883dc386.zip rockbox-e8ae70a3829d6b43846dc9f3585fedec883dc386.tar.gz rockbox-e8ae70a3829d6b43846dc9f3585fedec883dc386.tar.bz2 rockbox-e8ae70a3829d6b43846dc9f3585fedec883dc386.tar.xz | |
Fix wps showing parts of the main backdrop in some circumstances.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24336 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/wps.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index a539498..cb73e6f 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -612,8 +612,12 @@ static void gwps_enter_wps(void) } #endif display->backdrop_show(BACKDROP_SKIN_WPS); + /* make the backdrop actually take effect */ + display->clear_display(); skin_update(gwps, WPS_REFRESH_ALL); } + /* force statusbar/skin update since we just cleared the whole screen */ + send_event(GUI_EVENT_ACTIONUPDATE, (void*)1); } #ifdef HAVE_TOUCHSCREEN |