summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 52d43123b7..90081cc07d 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -616,7 +616,8 @@ int plugin_load(const char* plugin, void* parameter)
616 616
617 rc = hdr->entry_point((struct plugin_api*) &rockbox_api, parameter); 617 rc = hdr->entry_point((struct plugin_api*) &rockbox_api, parameter);
618 /* explicitly casting the pointer here to avoid touching every plugin. */ 618 /* explicitly casting the pointer here to avoid touching every plugin. */
619 619
620 action_signalscreenchange();
620 button_clear_queue(); 621 button_clear_queue();
621 622
622#ifdef HAVE_LCD_BITMAP 623#ifdef HAVE_LCD_BITMAP
@@ -648,7 +649,6 @@ int plugin_load(const char* plugin, void* parameter)
648 lcd_remote_clear_display(); 649 lcd_remote_clear_display();
649 lcd_remote_update(); 650 lcd_remote_update();
650#endif 651#endif
651 action_signalscreenchange();
652 652
653 if (pfn_tsr_exit == NULL) 653 if (pfn_tsr_exit == NULL)
654 plugin_loaded = false; 654 plugin_loaded = false;