diff --git a/src/ui/mod.rs b/src/ui/mod.rs index e1c5d2f..0df8e77 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -233,10 +233,14 @@ pub fn build_ui(app: &Application, config: Arc>, runtime: Hand glib::ControlFlow::Continue }), ); + + println!("We are here!"); glib::spawn_future_local( - glib::clone!(@weak axis_label, @weak conn_status_label, @weak control_panel, @strong gui_recv, @weak drawable => async move { - while let Ok(d) = gui_recv.recv().await { + glib::clone!(@weak axis_label, @weak conn_status_label, @weak control_panel, @weak drawable => async move { + println!("We are also here!"); + info!("Hello world!"); + while let Ok(d) = gui_recv.recv().await { drawable.queue_draw(); match d { GuiUpdate::MoveEvent(msg) => { @@ -274,6 +278,7 @@ pub fn build_ui(app: &Application, config: Arc>, runtime: Hand } } } + info!("Closing update loop"); }), );