diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-26 13:57:01 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-26 13:57:01 +0000 |
| commit | bb555d00fc22cdec2bef207b84ea667ef926a953 (patch) | |
| tree | fac6e14f9e84cd0d41a508c8f7f3ab57e041ced9 /apps | |
| parent | a8a3a0dcbe8bee09e8bd547cc7344c228ffe210d (diff) | |
| download | rockbox-bb555d00fc22cdec2bef207b84ea667ef926a953.zip rockbox-bb555d00fc22cdec2bef207b84ea667ef926a953.tar.gz rockbox-bb555d00fc22cdec2bef207b84ea667ef926a953.tar.bz2 rockbox-bb555d00fc22cdec2bef207b84ea667ef926a953.tar.xz | |
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
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/gwps-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 9362c84..d43f56f 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; } |