disabling modes where they shouldnt be enabled BIG UPDATE

This commit is contained in:
filipriec
2025-03-23 20:07:47 +01:00
parent fbcea1b270
commit 9917195fc4
3 changed files with 9 additions and 11 deletions

View File

@@ -8,7 +8,6 @@ pub struct UiState {
pub is_saved: bool,
pub show_intro: bool,
pub show_admin: bool,
pub show_general_mode: bool,
}
pub struct GeneralState {
@@ -65,7 +64,6 @@ impl Default for UiState {
is_saved: false,
show_intro: true,
show_admin: false,
show_general_mode: false,
}
}
}