소스 검색

Totp: Exit on short back press

Willy-JL 2 년 전
부모
커밋
3c674564d4
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      totp/ui/scenes/authenticate/totp_scene_authenticate.c
  2. 1 1
      totp/ui/scenes/generate_token/totp_scene_generate_token.c

+ 1 - 1
totp/ui/scenes/authenticate/totp_scene_authenticate.c

@@ -81,7 +81,7 @@ bool totp_scene_authenticate_handle_event(
         return true;
     }
 
-    if(event->input.type == InputTypeLong && event->input.key == InputKeyBack) {
+    if(event->input.type == InputTypePress && event->input.key == InputKeyBack) {
         return false;
     }
 

+ 1 - 1
totp/ui/scenes/generate_token/totp_scene_generate_token.c

@@ -337,7 +337,7 @@ bool totp_scene_generate_token_handle_event(
         return true;
     }
 
-    if(event->input.type == InputTypeLong && event->input.key == InputKeyBack) {
+    if(event->input.type == InputTypePress && event->input.key == InputKeyBack) {
         return false;
     }