diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-11-06 10:11:51 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-11-06 10:11:51 +0000 |
| commit | 6a1161b634e43225ae12bf669ad3bbe1ea1edab0 (patch) | |
| tree | 57a5b054cca637e51263077e8405bb83c62d53e2 /apps/plugins/text_editor.c | |
| parent | 2f444aac2910cebeed988ea22d442456a4729ea4 (diff) | |
| download | rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.zip rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.gz rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.bz2 rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.xz | |
dont allow the volume setting to wrap
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11445 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_editor.c')
| -rw-r--r-- | apps/plugins/text_editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c index 9f54128..449a88a 100644 --- a/apps/plugins/text_editor.c +++ b/apps/plugins/text_editor.c @@ -349,7 +349,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) rb->gui_synclist_draw(&lists); cur_sel = rb->gui_synclist_get_sel_pos(&lists); button = rb->get_action(CONTEXT_LIST,TIMEOUT_BLOCK); - if (rb->gui_synclist_do_button(&lists,button)) + if (rb->gui_synclist_do_button(&lists,button,LIST_WRAP_UNLESS_HELD)) continue; #ifdef HAVE_ADJUSTABLE_CPU_FREQ rb->cpu_boost(0); |