refactor: disable wayland in winit shell by default

This commit is contained in:
Ashley Wulber 2024-10-21 10:44:40 -04:00
parent 16f14793c7
commit dcdc6c1410
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
2 changed files with 10 additions and 10 deletions

View file

@ -66,7 +66,7 @@ impl PlatformSpecific {
) {
match action {
#[cfg(all(feature = "wayland", target_os = "linux"))]
platform_specific::Action::Wayland(a) => {
iced_runtime::platform_specific::Action::Wayland(a) => {
self.send_wayland(wayland::Action::Action(a));
}
}
@ -106,7 +106,7 @@ impl PlatformSpecific {
wayland_display_handle.display.as_ptr().cast(),
)
};
Connection::from_backend(backend)
sctk::reexports::client::Connection::from_backend(backend)
}
_ => {
return;