Use convenience function.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28139 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-09-21 22:55:24 +00:00
parent 40e61a70e3
commit 138ee6304b

View file

@ -652,12 +652,9 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
} }
/* Timeout so we can determine if play status has changed */ /* Timeout so we can determine if play status has changed */
button = get_action(CONTEXT_TREE,HZ/2); bool res = list_do_action(CONTEXT_LIST, HZ/2,
bool res = gui_synclist_do_button(&playlist_lists, &playlist_lists, &button, LIST_WRAP_UNLESS_HELD))
&button,
LIST_WRAP_UNLESS_HELD);
viewer.selected_track=gui_synclist_get_sel_pos(&playlist_lists); viewer.selected_track=gui_synclist_get_sel_pos(&playlist_lists);
if (res) if (res)
{ {
bool reload = playlist_buffer_needs_reload(&viewer.buffer, bool reload = playlist_buffer_needs_reload(&viewer.buffer,
@ -841,8 +838,8 @@ bool search_playlist(void)
gui_synclist_draw(&playlist_lists); gui_synclist_draw(&playlist_lists);
while (!exit) while (!exit)
{ {
button = get_action(CONTEXT_LIST, HZ/4); if (list_do_action(CONTEXT_LIST, HZ/4,
if (gui_synclist_do_button(&playlist_lists, &button, LIST_WRAP_UNLESS_HELD)) &playlist_lists, &button, LIST_WRAP_UNLESS_HELD))
continue; continue;
switch (button) switch (button)
{ {