diff options
author | Elliott Hughes <enh@google.com> | 2015-04-13 20:17:11 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-13 20:17:12 +0000 |
commit | b68c4fc42617acb97dde89f501caf8558a348b51 (patch) | |
tree | b8e7f4549a7fb6d562a1e01eac35e1080031db0e | |
parent | 0e3781ef9af2df648f54eb2a7765bef7b6b5b22e (diff) | |
parent | 300ed089b3c5717ddf46eb3a25d94c8d017e7be2 (diff) | |
download | bootable_recovery-b68c4fc42617acb97dde89f501caf8558a348b51.zip bootable_recovery-b68c4fc42617acb97dde89f501caf8558a348b51.tar.gz bootable_recovery-b68c4fc42617acb97dde89f501caf8558a348b51.tar.bz2 |
Merge "Treat KEY_ENTER the same as KEY_POWER in the pager."
-rw-r--r-- | screen_ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index 1e42ee7..cca261f 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -539,7 +539,7 @@ void ScreenRecoveryUI::ShowFile(FILE* fp) { 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) { |