Преглед на файлове

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;
     }