summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-04-27 18:57:51 +0000
committerThomas Martitz <kugel@rockbox.org>2009-04-27 18:57:51 +0000
commit9adc03949f5616f803c85b5ad2093f7f8a6ae448 (patch)
treea076c11570358699d1da5a6fe9a28d81f993ca5f
parentd111f3b66f6368a77aafc1b28cf29e36c8e19289 (diff)
downloadrockbox-9adc03949f5616f803c85b5ad2093f7f8a6ae448.tar.gz
rockbox-9adc03949f5616f803c85b5ad2093f7f8a6ae448.zip
Revert r20786 as it caused problems with alternating sublines (they need to be reset if gui_wps_refresh() wasn't called for some time, since the subline timeout gets confused). Also, it needs to be set to get the update, since do_full_update will be set to false after track change no matter if an update happened.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20812 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/gwps.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index cec0653030..273f5d8e61 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -260,6 +260,7 @@ static void gwps_fix_statusbars(void)
260 * */ 260 * */
261static void wps_lcd_activation_hook(void) 261static void wps_lcd_activation_hook(void)
262{ 262{
263 wps_state.do_full_update = true;
263 /* force timeout in wps main loop, so that the update is instantly */ 264 /* force timeout in wps main loop, so that the update is instantly */
264 queue_post(&button_queue, BUTTON_NONE, 0); 265 queue_post(&button_queue, BUTTON_NONE, 0);
265} 266}