From 8d2dbb3f23e9afe828c548e82a2925f6431ec2da Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 18 May 2026 16:54:23 -0400 Subject: [PATCH] fix feature gate --- src/surface/action.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/surface/action.rs b/src/surface/action.rs index 23a72e68..1a647293 100644 --- a/src/surface/action.rs +++ b/src/surface/action.rs @@ -45,6 +45,7 @@ pub struct LiveSettings { pub blur: Option, } +#[cfg(all(feature = "wayland", target_os = "linux", feature = "winit"))] type BoxedView = Option< Box< dyn Fn(&App) -> crate::Element<'_, crate::Action<::Message>>