Trying to clena the mess opened by plugins
Some checks failed
Deploy Website / deploy (push) Failing after 4m53s

This commit is contained in:
2026-02-21 01:03:55 +01:00
parent ac0ddc7fb9
commit 75a8fd4401
67 changed files with 1246 additions and 69 deletions

View File

@@ -74,6 +74,10 @@ pub struct UiState {
pub prev_page: Page,
pub prev_show_title: bool,
pub onboarding_dismissed: Vec<String>,
pub font: String,
pub zoom_factor: f32,
pub window_width: u32,
pub window_height: u32,
}
impl Default for UiState {
@@ -117,6 +121,10 @@ impl Default for UiState {
prev_page: Page::default(),
prev_show_title: true,
onboarding_dismissed: Vec::new(),
font: "8x13".to_string(),
zoom_factor: 1.5,
window_width: 1200,
window_height: 800,
}
}
}