diff options
author | 2022-04-01 17:16:15 -0300 | |
---|---|---|
committer | 2023-01-09 11:27:03 -0800 | |
commit | 529589d7fe9278858e3f251b559a1118598a8250 (patch) | |
tree | c82aedce4bace32865d67e4c9ce4057af6d16d21 /src/lib.rs | |
parent | 7ccd87c36b54e0d53f65f5774f140a0528ae4504 (diff) | |
download | iced-529589d7fe9278858e3f251b559a1118598a8250.tar.gz iced-529589d7fe9278858e3f251b559a1118598a8250.tar.bz2 iced-529589d7fe9278858e3f251b559a1118598a8250.zip |
Introduce `multi_window` from `pure`
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -181,6 +181,9 @@ pub mod touch; pub mod widget; pub mod window; +#[cfg(feature = "multi_window")] +pub mod multi_window; + #[cfg(all(not(feature = "glow"), feature = "wgpu"))] use iced_winit as runtime; |