A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 698acf4..35e9109 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -761,7 +761,7 @@ pub(crate) fn entry(event_loop: EventLoop<()>) {
};
},
);
- ch.map(|ch| thread::spawn(move || {
+ ch.map(|ch| thread::Builder::new().name("redrawer".into()).spawn(move || {
for () in ch {
PUT.get().map(|x| x.request_redraw());
}