diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-08-17 09:28:04 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-08-17 09:28:04 +0000 |
| commit | 07d3db2dec77f37154f1283d45f11db038d698f8 (patch) | |
| tree | 285aec596320683ab9952c6c4a8f0667623a966a /apps/gui | |
| parent | 5b71470185e7ef5fe9fcea25fbb1c59ca16e3f4e (diff) | |
| download | rockbox-07d3db2dec77f37154f1283d45f11db038d698f8.zip rockbox-07d3db2dec77f37154f1283d45f11db038d698f8.tar.gz rockbox-07d3db2dec77f37154f1283d45f11db038d698f8.tar.bz2 rockbox-07d3db2dec77f37154f1283d45f11db038d698f8.tar.xz | |
really fix the yes/no screen now, also id3 viewer shows the status bar
correctly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10630 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/yesno.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/yesno.c b/apps/gui/yesno.c index 2c3d6f7..6cb6ddb 100644 --- a/apps/gui/yesno.c +++ b/apps/gui/yesno.c @@ -80,7 +80,8 @@ enum yesno_res gui_syncyesno_run(struct text_message * main_message, case ACTION_YESNO_ACCEPT: result=YESNO_YES; break; - + case ACTION_NONE: + continue; default: if(default_event_handler(button) == SYS_USB_CONNECTED) return(YESNO_USB); |