Improve session controls and GUI views

This commit is contained in:
2026-06-08 22:27:23 +08:00
parent 2eb02350da
commit 25433038d5
12 changed files with 881 additions and 129 deletions

View File

@@ -1,4 +1,5 @@
mod app;
mod buffers;
mod panels;
use xserial_client::SessionManager;
@@ -17,6 +18,6 @@ fn main() {
let _ = eframe::run_native(
"xserial",
eframe::NativeOptions::default(),
Box::new(|_cc| Ok(Box::new(app::XserialApp::new(mgr, rx)))),
Box::new(|cc| Ok(Box::new(app::XserialApp::new(mgr, rx, cc.egui_ctx.clone())))),
);
}