wip changes
This commit is contained in:
parent
76904e33b2
commit
9487a9439c
1 changed files with 7 additions and 2 deletions
|
@ -234,9 +234,13 @@ pub fn build_ui(app: &Application, config: Arc<RwLock<AppConfig>>, runtime: Hand
|
|||
}),
|
||||
);
|
||||
|
||||
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<RwLock<AppConfig>>, runtime: Hand
|
|||
}
|
||||
}
|
||||
}
|
||||
info!("Closing update loop");
|
||||
}),
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue