diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-04-27 18:57:51 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-04-27 18:57:51 +0000 |
commit | 9adc03949f5616f803c85b5ad2093f7f8a6ae448 (patch) | |
tree | a076c11570358699d1da5a6fe9a28d81f993ca5f /apps | |
parent | d111f3b66f6368a77aafc1b28cf29e36c8e19289 (diff) |
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
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gui/gwps.c | 1 |
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) * */ static void wps_lcd_activation_hook(void) { + wps_state.do_full_update = true; /* force timeout in wps main loop, so that the update is instantly */ queue_post(&button_queue, BUTTON_NONE, 0); } |