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.

api: call ft_enter

+20
+20
apps/tree.c
··· 959 959 960 960 default: 961 961 if (tc.browse->disable_gui == true) { 962 + #ifdef HAVE_TAGCACHE 963 + switch (id3db ? tagtree_enter(&tc, true) : ft_enter(&tc)) 964 + #else 965 + switch (ft_enter(&tc)) 966 + #endif 967 + { 968 + case GO_TO_FILEBROWSER: reload_dir = true; break; 969 + case GO_TO_PLUGIN: 970 + return GO_TO_PLUGIN; 971 + case GO_TO_WPS: 972 + return GO_TO_WPS; 973 + #if CONFIG_TUNER 974 + case GO_TO_FM: 975 + return GO_TO_FM; 976 + #endif 977 + case GO_TO_ROOT: exit_func = true; break; 978 + default: 979 + break; 980 + } 981 + restore = do_restore_display; 962 982 return GO_TO_ROOT; 963 983 } 964 984 if (default_event_handler(button) == SYS_USB_CONNECTED)