Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

shortcuts: respect talk_menu setting when deleting shortcut

Change-Id: I6f06db5a41c402eeb3703a25c5d51fd0e4fe354f

+4 -2
+4 -2
apps/shortcuts.c
··· 636 636 if (confirm_delete_yesno("") != YESNO_YES) 637 637 { 638 638 gui_synclist_set_title(lists, lists->title, lists->title_icon); 639 - shortcut_menu_speak_item(selection, NULL); 639 + if (global_settings.talk_menu) 640 + shortcut_menu_speak_item(selection, NULL); 640 641 return ACTION_REDRAW; 641 642 } 642 643 ··· 651 652 652 653 if (shortcut_count > 0) 653 654 { 654 - shortcut_menu_speak_item(gui_synclist_get_sel_pos(lists), NULL); 655 + if (global_settings.talk_menu) 656 + shortcut_menu_speak_item(gui_synclist_get_sel_pos(lists), NULL); 655 657 return ACTION_REDRAW; 656 658 } 657 659