diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-09-17 10:08:50 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-09-17 10:08:50 +0000 |
commit | cf1cef5f573ca6961041c9ab53649ac52f6b1e93 (patch) | |
tree | f4be937b805d829c354e0ad723b4cf3b7089f29b /apps/gui/option_select.c | |
parent | 344f45165f4b1f76b95883895be3634225a10cbb (diff) |
minor update to gui_synclist_do_button() which will hopefully simplify things later.
Now returns true if the action was handled in that function instead of returning the handled action.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14733 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/option_select.c')
-rw-r--r-- | apps/gui/option_select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/option_select.c b/apps/gui/option_select.c index 474c459ff1..b8b1cc505b 100644 --- a/apps/gui/option_select.c +++ b/apps/gui/option_select.c @@ -381,7 +381,7 @@ bool option_screen(struct settings_list *setting, action = get_action(CONTEXT_LIST, TIMEOUT_BLOCK); if (action == ACTION_NONE) continue; - if (gui_synclist_do_button(&lists,action, + if (gui_synclist_do_button(&lists, &action, allow_wrap? LIST_WRAP_UNLESS_HELD: LIST_WRAP_OFF)) { selected = gui_synclist_get_sel_pos(&lists); |