1
0
Fork 0
forked from len0rd/rockbox

PictureFlow: enable theme in settings menus

Submenus for adjusting settings
were previously left unthemed

Change-Id: I073c7aabfdd9ce4e4c10c4c0dc689112c29b2a58
This commit is contained in:
Christian Soffke 2021-12-20 19:40:27 +01:00 committed by Solomon Peachy
parent 025f780685
commit abfee36ce0

View file

@ -4035,7 +4035,11 @@ static int pictureflow_main(const char* selected_file)
#ifdef USEGSLIB
grey_show(false);
#endif
FOR_NB_SCREENS(i)
rb->viewportmanager_theme_enable(i, true, NULL);
ret = main_menu();
FOR_NB_SCREENS(i)
rb->viewportmanager_theme_undo(i, false);
if ( ret == -2 ) return PLUGIN_GOTO_WPS;
if ( ret == -1 ) return PLUGIN_OK;
if ( ret != 0 ) return ret;