summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index b53009a976..472c01c92d 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -604,6 +604,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, unsigned button)
604#endif 604#endif
605 gui_synclist_select_previous(lists); 605 gui_synclist_select_previous(lists);
606 gui_synclist_draw(lists); 606 gui_synclist_draw(lists);
607 yield();
607 return LIST_PREV; 608 return LIST_PREV;
608 609
609 case LIST_NEXT: 610 case LIST_NEXT:
@@ -619,6 +620,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, unsigned button)
619#endif 620#endif
620 gui_synclist_select_next(lists); 621 gui_synclist_select_next(lists);
621 gui_synclist_draw(lists); 622 gui_synclist_draw(lists);
623 yield();
622 return LIST_NEXT; 624 return LIST_NEXT;
623 625
624#ifdef LIST_PGRIGHT 626#ifdef LIST_PGRIGHT