1
0
Fork 0
forked from len0rd/rockbox

The ON+Play menu in the playlist browser now behaves better, and it stays in the playlist menu after exiting

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5122 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-09-28 05:19:46 +00:00
parent 9c97f4d2a5
commit a82fd17d82

View file

@ -902,7 +902,7 @@ bool playlist_viewer_ex(char* filename)
switch (button)
{
case TREE_EXIT:
case TREE_EXIT | BUTTON_REL:
exit = true;
break;
@ -978,6 +978,9 @@ bool playlist_viewer_ex(char* filename)
/* ON+PLAY menu */
int ret;
/* Wait for the user to release the TREE_RUN key */
while((button_get(true)) != (TREE_RUN | BUTTON_REL)) {};
ret = onplay_menu(INDEX(viewer.cursor_pos));
if (ret < 0)