alex.kopachov 2 лет назад
Родитель
Сommit
d0cb734655

+ 3 - 1
ui/scenes/add_new_token/totp_scene_add_new_token.c

@@ -176,7 +176,9 @@ void update_screen_y_offset(SceneState* scene_state) {
     }
 }
 
-bool totp_scene_add_new_token_handle_event(const PluginEvent* const event, PluginState* plugin_state) {
+bool totp_scene_add_new_token_handle_event(
+    const PluginEvent* const event,
+    PluginState* plugin_state) {
     if(event->type != EventTypeKey) {
         return true;
     }

+ 3 - 1
ui/scenes/add_new_token/totp_scene_add_new_token.h

@@ -6,5 +6,7 @@
 
 void totp_scene_add_new_token_activate(PluginState* plugin_state);
 void totp_scene_add_new_token_render(Canvas* const canvas, const PluginState* plugin_state);
-bool totp_scene_add_new_token_handle_event(const PluginEvent* const event, PluginState* plugin_state);
+bool totp_scene_add_new_token_handle_event(
+    const PluginEvent* const event,
+    PluginState* plugin_state);
 void totp_scene_add_new_token_deactivate(PluginState* plugin_state);