mirror of
https://github.com/hubaldv/bioz-host-rs.git
synced 2026-03-10 02:40:30 +00:00
Implemented custom marker support during logging. Updated buttons.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
use eframe::NativeOptions;
|
||||
use eframe::egui::Vec2;
|
||||
|
||||
use simple_logger::SimpleLogger;
|
||||
use log::info;
|
||||
use tokio::runtime::Runtime;
|
||||
@@ -69,9 +72,11 @@ async fn main() {
|
||||
});
|
||||
|
||||
// Run the GUI in the main thread.
|
||||
let mut native_options = NativeOptions::default();
|
||||
native_options.viewport.inner_size = Some(Vec2::new(850.0, 600.0));
|
||||
let _ = eframe::run_native(
|
||||
"Impedance Visualizer [egui + tokio] - Hubald Verzijl - 2025",
|
||||
eframe::NativeOptions::default(),
|
||||
native_options,
|
||||
Box::new(|_cc| Ok(Box::new(app))),
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user