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.

Plugin return: only skip SBS refresh if WPS was previous activity

1) the plugin return value isn't necessarily respected.
2) the screen will be updated regardless, before
the WPS is displayed, which means the skin may
appear in an "incorrect" state for a moment.

It is therefore better to simplify this to a single
condition.

Change-Id: I723e6fe4862172075b9a4814080f612c2b2fb490

+1 -1
+1 -1
apps/plugin.c
··· 926 926 tree_unlock_cache(tree_get_context()); 927 927 928 928 pop_current_activity_without_refresh(); 929 - if ((rc != PLUGIN_GOTO_WPS) && (get_current_activity() != ACTIVITY_WPS)) 929 + if (get_current_activity() != ACTIVITY_WPS) 930 930 { 931 931 FOR_NB_SCREENS(i) 932 932 skin_update(CUSTOM_STATUSBAR, i, SKIN_REFRESH_ALL);