summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2021-12-20 19:40:27 +0100
committerSolomon Peachy <pizza@shaftnet.org>2022-01-01 22:00:09 -0500
commitabfee36ce0df251f0c188194caec4f6ff5c9026d (patch)
tree28bba877ef532c056bc6acb533c9ced2ad40e2b9 /apps/plugins
parent025f780685c60174cb1f15799601957fe384f376 (diff)
downloadrockbox-abfee36ce0df251f0c188194caec4f6ff5c9026d.tar.gz
rockbox-abfee36ce0df251f0c188194caec4f6ff5c9026d.zip
PictureFlow: enable theme in settings menus
Submenus for adjusting settings were previously left unthemed Change-Id: I073c7aabfdd9ce4e4c10c4c0dc689112c29b2a58
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/pictureflow/pictureflow.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index ec6e51c34d..2217c15678 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -4035,7 +4035,11 @@ static int pictureflow_main(const char* selected_file)
4035#ifdef USEGSLIB 4035#ifdef USEGSLIB
4036 grey_show(false); 4036 grey_show(false);
4037#endif 4037#endif
4038 FOR_NB_SCREENS(i)
4039 rb->viewportmanager_theme_enable(i, true, NULL);
4038 ret = main_menu(); 4040 ret = main_menu();
4041 FOR_NB_SCREENS(i)
4042 rb->viewportmanager_theme_undo(i, false);
4039 if ( ret == -2 ) return PLUGIN_GOTO_WPS; 4043 if ( ret == -2 ) return PLUGIN_GOTO_WPS;
4040 if ( ret == -1 ) return PLUGIN_OK; 4044 if ( ret == -1 ) return PLUGIN_OK;
4041 if ( ret != 0 ) return ret; 4045 if ( ret != 0 ) return ret;