Merge "Remove unnecessary globals."
diff --git a/screen_ui.cpp b/screen_ui.cpp
index 2aa3dab..7679335 100644
--- a/screen_ui.cpp
+++ b/screen_ui.cpp
@@ -533,7 +533,7 @@
             while (show_prompt) {
                 show_prompt = false;
                 int key = WaitKey();
-                if (key == KEY_POWER) {
+                if (key == KEY_POWER || key == KEY_ENTER) {
                     return;
                 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
                     if (offsets.size() <= 1) {