diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
| commit | f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch) | |
| tree | a24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/recorder | |
| parent | 9d756e2760a0926aa416b22e276c4a5b2685e84e (diff) | |
| download | rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.bz2 rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.xz | |
remove the need for action_signalscreenchange().
Fixes problems with targets where the ACTION_STD_CANCEL event is a combo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
| -rw-r--r-- | apps/recorder/keyboard.c | 3 | ||||
| -rw-r--r-- | apps/recorder/radio.c | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index 3ce0208..ca260b7 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -513,7 +513,6 @@ int kbd_input(char* text, int buflen) if (talk_menus_enabled()) /* voice UI? */ talk_spell(text, true); /* spell initial text */ - action_signalscreenchange(); while (!done) { @@ -755,7 +754,6 @@ int kbd_input(char* text, int buflen) #ifdef HAS_BUTTONBAR global_settings.buttonbar=buttonbar_config; #endif - action_signalscreenchange(); return -1; break; @@ -1188,7 +1186,6 @@ int kbd_input(char* text, int buflen) cur_blink = true; } } - action_signalscreenchange(); #ifdef HAS_BUTTONBAR global_settings.buttonbar = buttonbar_config; diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index eb457fc..24996bb 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -1260,7 +1260,6 @@ static int handle_radio_presets(void) gui_synclist_set_nb_items(&lists, num_presets); gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset); - action_signalscreenchange(); while (result == 0) { gui_synclist_draw(&lists); @@ -1293,7 +1292,6 @@ static int handle_radio_presets(void) result = 2; } } - action_signalscreenchange(); return result - 1; } @@ -1424,9 +1422,6 @@ static int fm_recording_screen(void) int rec_source = global_settings.rec_source; global_settings.rec_source = AUDIO_SRC_FMRADIO; - /* clearing queue seems to cure a spontaneous abort during record */ - action_signalscreenchange(); - ret = recording_screen(true); /* safe to reset as changing sources is prohibited here */ |