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.

Fix menus in Settings

Commit 034b6d5b prevented other Settings menus
on the same menu level from being displayed after
accessing one item's context menu

Change-Id: I378e1748b7f449ad34042a3c8c626488fc07a7d4

+4 -3
+4 -3
apps/menu.c
··· 522 522 MENUITEM_STRINGLIST(notquickscreen_able_option, 523 523 ID2P(LANG_ONPLAY_MENU_TITLE), NULL, 524 524 ID2P(LANG_RESET_SETTING)); 525 + const struct menu_item_ex *context_menu; 525 526 const struct settings_list *setting = 526 527 find_setting(temp->variable, NULL); 527 528 #ifdef HAVE_QUICKSCREEN 528 529 if (is_setting_quickscreenable(setting)) 529 - menu = &quickscreen_able_option; 530 + context_menu = &quickscreen_able_option; 530 531 else 531 532 #endif 532 - menu = &notquickscreen_able_option; 533 + context_menu = &notquickscreen_able_option; 533 534 534 - int msel = do_menu(menu, NULL, NULL, false); 535 + int msel = do_menu(context_menu, NULL, NULL, false); 535 536 536 537 switch (msel) 537 538 {