summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/radio.c')
-rw-r--r--apps/recorder/radio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 0e43cc6735..593cab3cc8 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -1331,7 +1331,7 @@ static int handle_radio_presets(void)
1331 str(LANG_FM_BUTTONBAR_ACTION)); 1331 str(LANG_FM_BUTTONBAR_ACTION));
1332 gui_buttonbar_draw(&buttonbar); 1332 gui_buttonbar_draw(&buttonbar);
1333#endif 1333#endif
1334 gui_synclist_init(&lists, presets_get_name, NULL, false, 1); 1334 gui_synclist_init(&lists, presets_get_name, NULL, false, 1, NULL);
1335 gui_synclist_set_title(&lists, str(LANG_PRESET), NOICON); 1335 gui_synclist_set_title(&lists, str(LANG_PRESET), NOICON);
1336 gui_synclist_set_icon_callback(&lists, NULL); 1336 gui_synclist_set_icon_callback(&lists, NULL);
1337 if(global_settings.talk_file) 1337 if(global_settings.talk_file)
@@ -1364,7 +1364,7 @@ static int handle_radio_presets(void)
1364 case ACTION_F3: 1364 case ACTION_F3:
1365 case ACTION_STD_CONTEXT: 1365 case ACTION_STD_CONTEXT:
1366 selected_preset = gui_synclist_get_sel_pos(&lists); 1366 selected_preset = gui_synclist_get_sel_pos(&lists);
1367 do_menu(&handle_radio_preset_menu, NULL); 1367 do_menu(&handle_radio_preset_menu, NULL, NULL, false);
1368 gui_synclist_speak_item(&lists); 1368 gui_synclist_speak_item(&lists);
1369 break; 1369 break;
1370 default: 1370 default:
@@ -1583,7 +1583,7 @@ MAKE_MENU(radio_settings_menu, ID2P(LANG_FM_MENU), NULL,
1583/* main menu of the radio screen */ 1583/* main menu of the radio screen */
1584static bool radio_menu(void) 1584static bool radio_menu(void)
1585{ 1585{
1586 return do_menu(&radio_settings_menu, NULL) == MENU_ATTACHED_USB; 1586 return do_menu(&radio_settings_menu, NULL, NULL, false) == MENU_ATTACHED_USB;
1587} 1587}
1588 1588
1589#endif 1589#endif