diff options
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r-- | apps/shortcuts.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c index e52e38eb06..98edcf653e 100644 --- a/apps/shortcuts.c +++ b/apps/shortcuts.c @@ -718,7 +718,10 @@ int do_shortcut_menu(void *ignored) } } } - pop_current_activity(); + if (GO_TO_PLUGIN == done) + pop_current_activity(ACTIVITY_REFRESH_DEFERRED); + else + pop_current_activity(ACTIVITY_REFRESH_NOW); --buflib_move_lock; return done; |