diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-25 08:54:55 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-25 08:54:55 +0000 |
| commit | 46f38c5f4fb587fd922d629bd5077202e6106407 (patch) | |
| tree | af7028f9284a42a7b9ffb4d8b9acdc7dfd8bfb26 /apps | |
| parent | d8e56e30d70b56f03e627292f70d568233874f20 (diff) | |
| download | rockbox-46f38c5f4fb587fd922d629bd5077202e6106407.zip rockbox-46f38c5f4fb587fd922d629bd5077202e6106407.tar.gz rockbox-46f38c5f4fb587fd922d629bd5077202e6106407.tar.bz2 rockbox-46f38c5f4fb587fd922d629bd5077202e6106407.tar.xz | |
ok, only update the screen if the time is selected... otherwise the scrolling lines arnt readable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17790 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/menus/main_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index a8235dc..b438b66 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -415,7 +415,7 @@ static int info_action_callback(int action, struct gui_synclist *lists) #endif return ACTION_REDRAW; } - else if (action == ACTION_NONE) + else if (action == ACTION_NONE && lists->selected_item == INFO_TIME) { if (TIME_AFTER(current_tick, last_redraw + HZ/2)) { |