summaryrefslogtreecommitdiffstats
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-12-14 03:06:04 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-12-14 22:35:33 -0500
commit6b87bfadfff6c44722f8ffe5227c05c41b1b47c8 (patch)
treea0f346c8cde95c33d0561977a064cc438841923e /apps/plugin.c
parenteaf717744d425e0bb8905f451e7443b07b67f97b (diff)
downloadrockbox-6b87bfadff.tar.gz
rockbox-6b87bfadff.zip
wps.c cleanup gui_show_wps
remove some old cruft move a few things around clean-up flow Change-Id: I138c6cd9e2d58ef526eb686333da413819df725d
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 21dbe47c54..45829a42ad 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -925,14 +925,16 @@ int plugin_load(const char* plugin, const void* parameter)
tree_unlock_cache(tree_get_context());
- pop_current_activity(ACTIVITY_REFRESH_DEFERRED);
- int curr_activity = get_current_activity();
- if ((curr_activity != ACTIVITY_PLAYLISTVIEWER) &&
- (curr_activity != ACTIVITY_WPS) &&
- (rc != PLUGIN_GOTO_WPS))
+ pop_current_activity_without_refresh();
+ if (rc != PLUGIN_GOTO_WPS)
{
- FOR_NB_SCREENS(i)
- skin_update(CUSTOM_STATUSBAR, i, SKIN_REFRESH_ALL);
+ int curr_activity = get_current_activity();
+ if ((curr_activity != ACTIVITY_PLAYLISTVIEWER) &&
+ (curr_activity != ACTIVITY_WPS))
+ {
+ FOR_NB_SCREENS(i)
+ skin_update(CUSTOM_STATUSBAR, i, SKIN_REFRESH_ALL);
+ }
}
if (!pfn_tsr_exit)