summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index f78b6bf4e1..5e02d33a95 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -621,6 +621,7 @@ static const struct plugin_api rockbox_api = {
621 appsversion, 621 appsversion,
622 /* new stuff at the end, sort into place next time 622 /* new stuff at the end, sort into place next time
623 the API gets incompatible */ 623 the API gets incompatible */
624 viewportmanager_set_statusbar,
624}; 625};
625 626
626int plugin_load(const char* plugin, const void* parameter) 627int plugin_load(const char* plugin, const void* parameter)
@@ -731,8 +732,11 @@ int plugin_load(const char* plugin, const void* parameter)
731#endif 732#endif
732 733
733 invalidate_icache(); 734 invalidate_icache();
735 viewportmanager_set_statusbar(false);
734 736
735 rc = hdr->entry_point(&rockbox_api, parameter); 737 rc = hdr->entry_point(&rockbox_api, parameter);
738
739 viewportmanager_set_statusbar(true);
736 740
737 button_clear_queue(); 741 button_clear_queue();
738 742