Mixed bag of things

This commit is contained in:
2026-01-28 17:39:41 +01:00
parent 0520ef872e
commit 4c633a895f
11 changed files with 229 additions and 5 deletions

View File

@@ -38,6 +38,9 @@ pub struct UiState {
pub runtime_highlight: bool,
pub show_completion: bool,
pub minimap_until: Option<Instant>,
pub last_event_count: usize,
pub event_flash: f32,
pub flash_brightness: f32,
}
impl Default for UiState {
@@ -61,6 +64,9 @@ impl Default for UiState {
runtime_highlight: false,
show_completion: true,
minimap_until: None,
last_event_count: 0,
event_flash: 0.0,
flash_brightness: 1.0,
}
}
}