fix 1-track centering!

This commit is contained in:
🪞👃🪞 2025-01-23 20:40:37 +01:00
parent ffe8893bed
commit 0fa8e5bf15
4 changed files with 50 additions and 44 deletions

View file

@ -52,6 +52,6 @@ pub(crate) use std::ffi::OsString;
engine.read().unwrap().exited.store(true, std::sync::atomic::Ordering::Relaxed);
let state = TestComponent("hello world".into());
let state = std::sync::Arc::new(std::sync::RwLock::new(state));
engine.run(&state)?;
//engine.run(&state)?;
Ok(())
}