mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 21:55:10 -05:00
Patch "Remain in PLViewer when move_track is canceled", by Lee Kang Hyuk. Closes FS#8322.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15937 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4a2a45f400
commit
a6d4e531a3
2 changed files with 12 additions and 1 deletions
|
|
@ -640,8 +640,18 @@ bool playlist_viewer_ex(char* filename)
|
||||||
{
|
{
|
||||||
case ACTION_TREE_WPS:
|
case ACTION_TREE_WPS:
|
||||||
case ACTION_STD_CANCEL:
|
case ACTION_STD_CANCEL:
|
||||||
exit = true;
|
{
|
||||||
|
if (viewer.move_track >= 0)
|
||||||
|
{
|
||||||
|
viewer.selected_track = viewer.move_track;
|
||||||
|
gui_synclist_select_item(&playlist_lists, viewer.move_track);
|
||||||
|
viewer.move_track = -1;
|
||||||
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
exit = true;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case ACTION_STD_OK:
|
case ACTION_STD_OK:
|
||||||
{
|
{
|
||||||
struct playlist_entry * current_track =
|
struct playlist_entry * current_track =
|
||||||
|
|
|
||||||
|
|
@ -354,6 +354,7 @@ Gerritt Gonzales
|
||||||
Martin Crkovský
|
Martin Crkovský
|
||||||
Ariya Hidayat
|
Ariya Hidayat
|
||||||
Jonas Hurrelmann
|
Jonas Hurrelmann
|
||||||
|
Lee Kang Hyuk
|
||||||
|
|
||||||
The libmad team
|
The libmad team
|
||||||
The wavpack team
|
The wavpack team
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue