summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/keyboard.c3
-rw-r--r--apps/recorder/radio.c5
2 files changed, 0 insertions, 8 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 3ce0208b7e..ca260b7bb0 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -513,7 +513,6 @@ int kbd_input(char* text, int buflen)
513 if (talk_menus_enabled()) /* voice UI? */ 513 if (talk_menus_enabled()) /* voice UI? */
514 talk_spell(text, true); /* spell initial text */ 514 talk_spell(text, true); /* spell initial text */
515 515
516 action_signalscreenchange();
517 516
518 while (!done) 517 while (!done)
519 { 518 {
@@ -755,7 +754,6 @@ int kbd_input(char* text, int buflen)
755#ifdef HAS_BUTTONBAR 754#ifdef HAS_BUTTONBAR
756 global_settings.buttonbar=buttonbar_config; 755 global_settings.buttonbar=buttonbar_config;
757#endif 756#endif
758 action_signalscreenchange();
759 return -1; 757 return -1;
760 break; 758 break;
761 759
@@ -1188,7 +1186,6 @@ int kbd_input(char* text, int buflen)
1188 cur_blink = true; 1186 cur_blink = true;
1189 } 1187 }
1190 } 1188 }
1191 action_signalscreenchange();
1192 1189
1193#ifdef HAS_BUTTONBAR 1190#ifdef HAS_BUTTONBAR
1194 global_settings.buttonbar = buttonbar_config; 1191 global_settings.buttonbar = buttonbar_config;
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index eb457fc2e3..24996bb92b 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -1260,7 +1260,6 @@ static int handle_radio_presets(void)
1260 gui_synclist_set_nb_items(&lists, num_presets); 1260 gui_synclist_set_nb_items(&lists, num_presets);
1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset); 1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset);
1262 1262
1263 action_signalscreenchange();
1264 while (result == 0) 1263 while (result == 0)
1265 { 1264 {
1266 gui_synclist_draw(&lists); 1265 gui_synclist_draw(&lists);
@@ -1293,7 +1292,6 @@ static int handle_radio_presets(void)
1293 result = 2; 1292 result = 2;
1294 } 1293 }
1295 } 1294 }
1296 action_signalscreenchange();
1297 return result - 1; 1295 return result - 1;
1298} 1296}
1299 1297
@@ -1424,9 +1422,6 @@ static int fm_recording_screen(void)
1424 int rec_source = global_settings.rec_source; 1422 int rec_source = global_settings.rec_source;
1425 global_settings.rec_source = AUDIO_SRC_FMRADIO; 1423 global_settings.rec_source = AUDIO_SRC_FMRADIO;
1426 1424
1427 /* clearing queue seems to cure a spontaneous abort during record */
1428 action_signalscreenchange();
1429
1430 ret = recording_screen(true); 1425 ret = recording_screen(true);
1431 1426
1432 /* safe to reset as changing sources is prohibited here */ 1427 /* safe to reset as changing sources is prohibited here */