Просмотр исходного кода

Totp: Exit on short back press

Willy-JL 2 лет назад
Родитель
Сommit
3c674564d4

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