summaryrefslogtreecommitdiff
path: root/apps/gui/quickscreen.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/gui/quickscreen.c
parenteaf717744d425e0bb8905f451e7443b07b67f97b (diff)
downloadrockbox-6b87bfadfff6c44722f8ffe5227c05c41b1b47c8.tar.gz
rockbox-6b87bfadfff6c44722f8ffe5227c05c41b1b47c8.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/gui/quickscreen.c')
-rw-r--r--apps/gui/quickscreen.c4
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
410 } 410 }
411 411
412 if (ret & QUICKSCREEN_GOTO_SHORTCUTS_MENU) /* Eliminate flashing of parent during */ 412 if (ret & QUICKSCREEN_GOTO_SHORTCUTS_MENU) /* Eliminate flashing of parent during */
413 pop_current_activity(ACTIVITY_REFRESH_DEFERRED); /* transition to Shortcuts */ 413 pop_current_activity_without_refresh(); /* transition to Shortcuts */
414 else 414 else
415 pop_current_activity(ACTIVITY_REFRESH_NOW); 415 pop_current_activity();
416 416
417 return ret; 417 return ret;
418} 418}