summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2006-07-02 16:18:59 +0000
committerKevin Ferrare <kevin@rockbox.org>2006-07-02 16:18:59 +0000
commitf64280ff00bbf131b82322cb2fe138b259ebc5c3 (patch)
tree359bf907f4678bab1ae8773c07219a36b49364a0 /apps/gui
parentf77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76 (diff)
downloadrockbox-f64280ff00bbf131b82322cb2fe138b259ebc5c3.tar.gz
rockbox-f64280ff00bbf131b82322cb2fe138b259ebc5c3.zip
OOPS Forgot remote keys bindings for the ID3 info screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10176 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index 5dff8dc1b2..67c0f3055d 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -658,7 +658,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, unsigned button)
658#endif 658#endif
659 gui_synclist_scroll_right(lists); 659 gui_synclist_scroll_right(lists);
660 gui_synclist_draw(lists); 660 gui_synclist_draw(lists);
661 return true; 661 return LIST_PGRIGHT;
662#endif 662#endif
663 663
664#ifdef LIST_PGLEFT 664#ifdef LIST_PGLEFT
@@ -670,7 +670,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, unsigned button)
670#endif 670#endif
671 gui_synclist_scroll_left(lists); 671 gui_synclist_scroll_left(lists);
672 gui_synclist_draw(lists); 672 gui_synclist_draw(lists);
673 return true; 673 return LIST_PGLEFT;
674#endif 674#endif
675 675
676/* for pgup / pgdown, we are obliged to have a different behaviour depending on the screen 676/* for pgup / pgdown, we are obliged to have a different behaviour depending on the screen