From b011ecd6155084197541866d0e244e9d2116bf26 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Fri, 19 Apr 2024 10:53:54 -0700 Subject: [PATCH] Use single-threaded async executor --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index faefdf8..e809460 100644 --- a/src/main.rs +++ b/src/main.rs @@ -339,7 +339,7 @@ impl App { impl Application for App { type Message = Msg; - type Executor = iced::executor::Default; + type Executor = cosmic::SingleThreadExecutor; type Flags = Args; const APP_ID: &'static str = "com.system76.CosmicWorkspaces";