* commit '507630e99cecddca3c22425a76634c8461faf46e': Treat KEY_ENTER the same as KEY_POWER in the pager.
This commit is contained in:
commit
dd35c9898c
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue