diff options
author | 2023-02-28 12:15:04 +0000 | |
---|---|---|
committer | 2023-05-11 17:00:18 +0100 | |
commit | 09a2a061303e954dbae7dab6f9bf092c121900f8 (patch) | |
tree | 53a34db60096d74338f255cb119b56c312498ef6 | |
parent | 42671e2855a7e54c1785f75833da062e07362b87 (diff) | |
download | iced-09a2a061303e954dbae7dab6f9bf092c121900f8.tar.gz iced-09a2a061303e954dbae7dab6f9bf092c121900f8.tar.bz2 iced-09a2a061303e954dbae7dab6f9bf092c121900f8.zip |
Fix import path
-rw-r--r-- | winit/src/settings.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winit/src/settings.rs b/winit/src/settings.rs index a807cdba..22033113 100644 --- a/winit/src/settings.rs +++ b/winit/src/settings.rs @@ -163,7 +163,7 @@ impl Window { { // `with_name` is available on both `WindowBuilderExtWayland` and `WindowBuilderExtX11` and they do // exactly the same thing. We arbitrarily choose `WindowBuilderExtWayland` here. - use ::winit::platform::x11::WindowBuilderExtWayland; + use ::winit::platform::wayland::WindowBuilderExtWayland; if let Some(id) = _id { window_builder = window_builder.with_name(id.clone(), id); |