From cda781cb96875c1c3b9cf648393ae4f325a1d34d Mon Sep 17 00:00:00 2001 From: wiiznokes <78230769+wiiznokes@users.noreply.github.com> Date: Thu, 16 Nov 2023 22:01:50 +0100 Subject: [PATCH] Update mod.rs --- src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mod.rs b/src/app/mod.rs index f775aba153d..5a487fe804e 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -362,7 +362,7 @@ where type Executor: iced_futures::Executor; /// Argument received [`Application::new`]. - type Flags: Clone; + type Flags; /// Message type specific to our app. type Message: Clone + std::fmt::Debug + Send + 'static;