summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-03-19 14:33:22 +0000
committerThomas Martitz <kugel@rockbox.org>2009-03-19 14:33:22 +0000
commit71471062eb278301434993a7678578b8533cf914 (patch)
treec70c8b361571d12caecdadafabbf21e02fdd2445
parent12791d37142e95c07c3e7178ad6eee969c4848eb (diff)
downloadrockbox-71471062eb278301434993a7678578b8533cf914.tar.gz
rockbox-71471062eb278301434993a7678578b8533cf914.zip
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
-rw-r--r--apps/gui/gwps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index 6d40ef08c2..7bf676263c 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -700,7 +700,6 @@ long gui_wps_show(void)
700 } 700 }
701 701
702 if (exit) { 702 if (exit) {
703 gwps_leave_wps();
704#ifdef HAVE_LCD_CHARCELLS 703#ifdef HAVE_LCD_CHARCELLS
705 status_set_record(false); 704 status_set_record(false);
706 status_set_audio(false); 705 status_set_audio(false);
@@ -716,6 +715,7 @@ long gui_wps_show(void)
716#ifdef AB_REPEAT_ENABLE 715#ifdef AB_REPEAT_ENABLE
717 ab_reset_markers(); 716 ab_reset_markers();
718#endif 717#endif
718 gwps_leave_wps();
719#ifdef HAVE_RECORDING 719#ifdef HAVE_RECORDING
720 if (button == ACTION_WPS_REC) 720 if (button == ACTION_WPS_REC)
721 return GO_TO_RECSCREEN; 721 return GO_TO_RECSCREEN;