removing edit mode from the codebase

This commit is contained in:
filipriec
2025-08-24 15:32:24 +02:00
parent 06cc1663b3
commit 15d9b31cb6
6 changed files with 21 additions and 12 deletions

View File

@@ -24,7 +24,7 @@ impl Default for LoginState {
current_cursor_pos: 0,
has_unsaved_changes: false,
login_request_pending: false,
app_mode: AppMode::Edit,
app_mode: canvas::AppMode::Edit,
}
}
}
@@ -32,7 +32,7 @@ impl Default for LoginState {
impl LoginState {
pub fn new() -> Self {
Self {
app_mode: AppMode::Edit,
app_mode: canvas::AppMode::Edit,
..Default::default()
}
}