settings gui PoC

This commit is contained in:
Aleksander
2025-11-05 22:37:07 +01:00
parent 33955498cc
commit e087eb3743
18 changed files with 285 additions and 29 deletions

View File

@@ -9,7 +9,9 @@ pub struct TestbedDashboard {
impl TestbedDashboard {
pub fn new() -> anyhow::Result<Self> {
let (frontend, layout) = frontend::Frontend::new()?;
let (frontend, layout) = frontend::Frontend::new(frontend::InitParams {
settings: Default::default(),
})?;
Ok(Self { frontend, layout })
}
}