From 3c573df26152d16f1aacd9fdf478a46445e6c37a Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 25 Oct 2022 09:31:51 -0600 Subject: [PATCH] Do not set async by default --- examples/editor-orbclient/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/editor-orbclient/src/main.rs b/examples/editor-orbclient/src/main.rs index f2b132a..67c0f0a 100644 --- a/examples/editor-orbclient/src/main.rs +++ b/examples/editor-orbclient/src/main.rs @@ -26,7 +26,7 @@ fn main() { 1024 * display_scale as u32, 768 * display_scale as u32, &format!("COSMIC TEXT - {}", font_system.locale), - &[WindowFlag::Resizable, WindowFlag::Async], + &[WindowFlag::Resizable], ) .unwrap();