From bb555d00fc22cdec2bef207b84ea667ef926a953 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 26 Jul 2007 13:57:01 +0000 Subject: [PATCH] Fix a bug where targets which have a software keylock couldnt seek in the wps easily. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14001 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 9362c84e20..d43f56fac6 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -280,7 +280,7 @@ bool ffwd_rew(int button) break; } if (!exit) - button = get_action(CONTEXT_WPS,TIMEOUT_BLOCK); + button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,TIMEOUT_BLOCK); } return usb; }