Merge "Treat KEY_ENTER the same as KEY_POWER in the pager."

This commit is contained in:
Elliott Hughes
2015-04-13 20:17:11 +00:00
committed by Gerrit Code Review
+1 -1
View File
@@ -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) {