From 33a70c88d2a2799a8c5cc7e54e84a2ea4ef247b7 Mon Sep 17 00:00:00 2001 From: pixelma Date: Thu, 18 Jun 2009 13:50:11 +0000 Subject: [PATCH] Restore the ACTION_REDRAW case as it was before r20661 (with a slight change as suggested by Thomas Martitz). Without it you could get trapped in the WPS on targets with software hold as disabling hold again did not work correctly. Also fix(ed) typos... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21325 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index af9cea641..50382a58a 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -768,8 +768,9 @@ long gui_wps_show(void) break; #endif /* HAVE_TOUCHSCREEN */ case ACTION_REDRAW: /* yes are locked, just redraw */ - /* fall througgh */ - case ACTION_NONE: /* Timeout, do an partial update */ + wps_state.do_full_update = true; + break; + case ACTION_NONE: /* Timeout, do a partial update */ update = true; ffwd_rew(button); /* hopefully fix the ffw/rwd bug */ break; -- 2.11.4.GIT