summaryrefslogtreecommitdiff
path: root/apps/gui/gwps.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-07-03 05:08:33 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-07-03 05:08:33 +0000
commit0e445fcef6a803e0b321964b3c739f6dc9f2a82d (patch)
tree2ab1303b93f85bf25ecb32a8c4396af52b599b5d /apps/gui/gwps.c
parentc41f13f7d8d3c3fe4ee1ed8a94f5492f7adc6945 (diff)
downloadrockbox-0e445fcef6a803e0b321964b3c739f6dc9f2a82d.tar.gz
rockbox-0e445fcef6a803e0b321964b3c739f6dc9f2a82d.zip
Fix the bug where the short-long fwd/back action would ffwd/rewind the next folder (consult the manual if that makes no sense)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21619 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/gwps.c')
-rw-r--r--apps/gui/gwps.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index 50382a58ad..0b41f88cdc 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -135,6 +135,8 @@ static void change_dir(int direction)
135 audio_prev_dir(); 135 audio_prev_dir();
136 else if (direction > 0) 136 else if (direction > 0)
137 audio_next_dir(); 137 audio_next_dir();
138 /* prevent the next dir to immediatly start being ffw'd */
139 action_wait_for_release();
138} 140}
139 141
140static void prev_track(unsigned long skip_thresh) 142static void prev_track(unsigned long skip_thresh)