Skip to content

Commit

Permalink
CLang format
Browse files Browse the repository at this point in the history
  • Loading branch information
akopachov committed Jul 10, 2023
1 parent 0ee50f3 commit d0cb734
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ui/scenes/add_new_token/totp_scene_add_new_token.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 3 additions & 1 deletion ui/scenes/add_new_token/totp_scene_add_new_token.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit d0cb734

Please sign in to comment.