diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-03-19 14:33:22 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-03-19 14:33:22 +0000 |
| commit | 71471062eb278301434993a7678578b8533cf914 (patch) | |
| tree | c70c8b361571d12caecdadafabbf21e02fdd2445 /apps | |
| parent | 12791d37142e95c07c3e7178ad6eee969c4848eb (diff) | |
| download | rockbox-71471062eb278301434993a7678578b8533cf914.zip rockbox-71471062eb278301434993a7678578b8533cf914.tar.gz rockbox-71471062eb278301434993a7678578b8533cf914.tar.bz2 rockbox-71471062eb278301434993a7678578b8533cf914.tar.xz | |
Move gwps_leave_wps() a bit down, so that the menu-statusbars are showing in sync with the rest of the followin screen. It was shown noticeably earlier, particularly if the fade on stop is on.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20355 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/gwps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index 6d40ef0..7bf6762 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -700,7 +700,6 @@ long gui_wps_show(void) } if (exit) { - gwps_leave_wps(); #ifdef HAVE_LCD_CHARCELLS status_set_record(false); status_set_audio(false); @@ -716,6 +715,7 @@ long gui_wps_show(void) #ifdef AB_REPEAT_ENABLE ab_reset_markers(); #endif + gwps_leave_wps(); #ifdef HAVE_RECORDING if (button == ACTION_WPS_REC) return GO_TO_RECSCREEN; |