mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-22 15:48:12 +08:00
A few minor lints and docs (#1436)
* A few minor lints and docs * Added required packages to compile on Debian-style linux * Inlined some format args, and removed some `&` in args (they cause about 6% slowdown that compiler cannot inline) * a few spelling mistakes * fix fmt
This commit is contained in:
@@ -86,11 +86,11 @@ r#"
|
||||
block_on(crate::node_graph_executor::run_node_graph());
|
||||
let mut res = VecDeque::new();
|
||||
editor.poll_node_graph_evaluation(&mut res);
|
||||
//println!("node_graph_poll: {:#?}", res);
|
||||
//println!("node_graph_poll: {res:#?}");
|
||||
|
||||
//println!("in: {:#?}", message);
|
||||
//println!("in: {message:#?}");
|
||||
let res = editor.handle_message(message);
|
||||
//println!("out: {:#?}", res);
|
||||
//println!("out: {res:#?}");
|
||||
responses.push(res);
|
||||
}
|
||||
let responses = responses.pop().unwrap();
|
||||
@@ -100,6 +100,6 @@ r#"
|
||||
} else {
|
||||
panic!();
|
||||
}
|
||||
println!("responses: {:#?}", responses);
|
||||
println!("responses: {responses:#?}");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user