From d0cb734655fdc0a3d2943c9788e15c6add42fe8e Mon Sep 17 00:00:00 2001 From: "alex.kopachov" Date: Mon, 10 Jul 2023 14:11:00 +0200 Subject: [PATCH] CLang format --- ui/scenes/add_new_token/totp_scene_add_new_token.c | 4 +++- ui/scenes/add_new_token/totp_scene_add_new_token.h | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ui/scenes/add_new_token/totp_scene_add_new_token.c b/ui/scenes/add_new_token/totp_scene_add_new_token.c index 4a2f35c6778..3747cf071a7 100644 --- a/ui/scenes/add_new_token/totp_scene_add_new_token.c +++ b/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; } diff --git a/ui/scenes/add_new_token/totp_scene_add_new_token.h b/ui/scenes/add_new_token/totp_scene_add_new_token.h index 23e57427bb1..7297869d0b8 100644 --- a/ui/scenes/add_new_token/totp_scene_add_new_token.h +++ b/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);