mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-07 13:45:03 -05:00
touchscreen: Fix seeking to end of track in WPS
Seeking to the very end of the track with the touchscreen caused rapid skipping through the playlist because each touch event generates a separate seek operation, kind of like rapidly pressing a physical button. Fix this bug by executing the seek operation only for the release event. Change-Id: Ic1080065a68e7cc2ba98e2f27293c954f2ec8fb2
This commit is contained in:
parent
010d22ed29
commit
02ad19c959
3 changed files with 21 additions and 3 deletions
|
|
@ -303,6 +303,8 @@ enum {
|
|||
ACTION_TOUCH_REPMODE,
|
||||
ACTION_TOUCH_MUTE,
|
||||
ACTION_TOUCH_SCROLLBAR,
|
||||
ACTION_TOUCH_SCROLLBAR_SET,
|
||||
ACTION_TOUCH_SCROLLBAR_END,
|
||||
ACTION_TOUCH_VOLUME,
|
||||
ACTION_TOUCH_SOFTLOCK,
|
||||
ACTION_TOUCH_SETTING,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue