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.

OpenPlugins reset start_in_screen when database record is deleted

This is more of an ease of use enhancement than a bug
but it should prevent the annoyance of the message about the missing entry
without needing to go and reset the start in screen setting

Change-Id: I15eb005ce254eb0f0d3f2543abf710b68468a8b3

+5
+5
apps/plugins/open_plugins.c
··· 480 480 { 481 481 lang_id = op_entry.lang_id; 482 482 hash = op_entry.hash; 483 + if(lang_id == LANG_START_SCREEN 484 + && rb->global_settings->start_in_screen == GO_TO_PLUGIN +2) 485 + { 486 + rb->global_settings->start_in_screen = GO_TO_ROOT + 2; /* default */ 487 + } 483 488 } 484 489 rb->memset(&op_entry, 0, op_entry_sz); 485 490 op_entry.lang_id = lang_id;