Checkpoint: Compiling

This commit is contained in:
Marshall Bowers 2023-09-29 20:51:45 -04:00
parent 963f179d7f
commit 8cac89d17c
3 changed files with 39 additions and 39 deletions

View file

@ -17,7 +17,9 @@ fn main() {
SimpleLogger::init(LevelFilter::Info, Default::default()).expect("could not initialize logger");
gpui3::App::production().run(|cx| {
let window = cx.open_window(Default::default(), |cx| workspace(cx));
cx.run_on_main(|cx| {
let window = cx.open_window(Default::default(), |cx| workspace(cx));
});
});
}