wip changes
This commit is contained in:
parent
76904e33b2
commit
9487a9439c
1 changed files with 7 additions and 2 deletions
|
@ -233,10 +233,14 @@ pub fn build_ui(app: &Application, config: Arc<RwLock<AppConfig>>, runtime: Hand
|
||||||
glib::ControlFlow::Continue
|
glib::ControlFlow::Continue
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
println!("We are here!");
|
||||||
|
|
||||||
glib::spawn_future_local(
|
glib::spawn_future_local(
|
||||||
glib::clone!(@weak axis_label, @weak conn_status_label, @weak control_panel, @strong gui_recv, @weak drawable => async move {
|
glib::clone!(@weak axis_label, @weak conn_status_label, @weak control_panel, @weak drawable => async move {
|
||||||
while let Ok(d) = gui_recv.recv().await {
|
println!("We are also here!");
|
||||||
|
info!("Hello world!");
|
||||||
|
while let Ok(d) = gui_recv.recv().await {
|
||||||
drawable.queue_draw();
|
drawable.queue_draw();
|
||||||
match d {
|
match d {
|
||||||
GuiUpdate::MoveEvent(msg) => {
|
GuiUpdate::MoveEvent(msg) => {
|
||||||
|
@ -274,6 +278,7 @@ pub fn build_ui(app: &Application, config: Arc<RwLock<AppConfig>>, runtime: Hand
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
info!("Closing update loop");
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue