From 8f10a3bd34c5e97fabae0329bd90fd10a973b48e Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Thu, 16 Apr 2026 11:56:14 -0700 Subject: [PATCH] winit: Set `WindowAttributesWayland` without `cctk` feature There doesn't seem to be any reason for this to require the `cctk` feature? Fixes the app ID, and therefore icon, for `cosmic-sync-gui`. --- winit/src/conversion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winit/src/conversion.rs b/winit/src/conversion.rs index fcb73c39..cc5676b5 100644 --- a/winit/src/conversion.rs +++ b/winit/src/conversion.rs @@ -178,7 +178,7 @@ pub fn window_attributes( ), )); } - #[cfg(all(feature = "cctk", target_os = "linux"))] + #[cfg(target_os = "linux")] { use winit::platform::wayland::WindowAttributesWayland;