From 4b1eb39d4fda3918513ee8e6780f634f43d05daf Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 28 Aug 2024 08:43:43 -0700 Subject: [PATCH] Clippy --- src/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window.rs b/src/window.rs index e0647be..6e528e9 100644 --- a/src/window.rs +++ b/src/window.rs @@ -277,6 +277,7 @@ enum HandleMessageResult { } /// A window that is running in its own thread. +#[allow(clippy::struct_excessive_bools)] // stop judging me clippy! pub struct RunningWindow where AppMessage: Message,