feat: change log panel size, closes #50

This commit is contained in:
Jack Wills
2025-06-16 16:34:22 +00:00
parent d198398795
commit 6edf99e084
30 changed files with 738 additions and 342 deletions
+3 -3
View File
@@ -1,14 +1,14 @@
use std::sync::atomic::{AtomicBool, Ordering};
#[derive(Debug)]
pub struct Redraw(AtomicBool);
pub struct Rerender(AtomicBool);
impl Redraw {
impl Rerender {
pub const fn new() -> Self {
Self(AtomicBool::new(true))
}
pub fn set_true(&self) {
pub fn update(&self) {
self.0.store(true, Ordering::SeqCst);
}