Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 507630e9 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am b68c4fc4: Merge "Treat KEY_ENTER the same as KEY_POWER in the pager."

* commit 'b68c4fc4':
  Treat KEY_ENTER the same as KEY_POWER in the pager.
parents d56e0f37 b68c4fc4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {