This commit is contained in:
Willy-JL
2023-07-23 00:12:54 +02:00
parent 8d54b4324f
commit 1717fe9285
4 changed files with 5 additions and 10 deletions

View File

@@ -58,9 +58,7 @@ UART_TerminalApp* uart_terminal_app_alloc() {
app->text_input = text_input_alloc();
view_dispatcher_add_view(
app->view_dispatcher,
UART_TerminalAppViewTextInput,
text_input_get_view(app->text_input));
app->view_dispatcher, UART_TerminalAppViewTextInput, text_input_get_view(app->text_input));
scene_manager_next_scene(app->scene_manager, UART_TerminalSceneStart);

View File

@@ -58,9 +58,7 @@ UART_TerminalApp* uart_terminal_app_alloc() {
app->text_input = text_input_alloc();
view_dispatcher_add_view(
app->view_dispatcher,
UART_TerminalAppViewTextInput,
text_input_get_view(app->text_input));
app->view_dispatcher, UART_TerminalAppViewTextInput, text_input_get_view(app->text_input));
scene_manager_next_scene(app->scene_manager, UART_TerminalSceneStart);

View File

@@ -68,9 +68,7 @@ WifiMarauderApp* wifi_marauder_app_alloc() {
app->text_input = text_input_alloc();
view_dispatcher_add_view(
app->view_dispatcher,
WifiMarauderAppViewTextInput,
text_input_get_view(app->text_input));
app->view_dispatcher, WifiMarauderAppViewTextInput, text_input_get_view(app->text_input));
app->widget = widget_alloc();
view_dispatcher_add_view(