Feat: saving screen during perfs

This commit is contained in:
2026-02-21 15:56:52 +01:00
parent 4526156c37
commit 7207a5fefe
17 changed files with 117 additions and 223 deletions

View File

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