diff options
Diffstat (limited to 'apps/gui/quickscreen.c')
-rw-r--r-- | apps/gui/quickscreen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c index 1f32dca544..4eebe09fd3 100644 --- a/apps/gui/quickscreen.c +++ b/apps/gui/quickscreen.c @@ -410,9 +410,9 @@ static int gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter } if (ret & QUICKSCREEN_GOTO_SHORTCUTS_MENU) /* Eliminate flashing of parent during */ - pop_current_activity(ACTIVITY_REFRESH_DEFERRED); /* transition to Shortcuts */ + pop_current_activity_without_refresh(); /* transition to Shortcuts */ else - pop_current_activity(ACTIVITY_REFRESH_NOW); + pop_current_activity(); return ret; } |