summaryrefslogtreecommitdiffstats
path: root/core/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-05-25 23:37:14 +0200
committerLibravatar GitHub <noreply@github.com>2023-05-25 23:37:14 +0200
commitc61a4cc21ca4d5019cd10df2f316ebbdb24061f1 (patch)
treeaba611186298650931cd818d56e21feff35f974f /core/src/window.rs
parent6c6930b91df0d7637ed6c0f3f4e57a03c5e5896f (diff)
parent70fd296ccc69ae135bfbe693b8404d5409ae4332 (diff)
downloadiced-c61a4cc21ca4d5019cd10df2f316ebbdb24061f1.tar.gz
iced-c61a4cc21ca4d5019cd10df2f316ebbdb24061f1.tar.bz2
iced-c61a4cc21ca4d5019cd10df2f316ebbdb24061f1.zip
Merge pull request #1738 from nicoburns/update-winit-0.28
Update to winit 0.28
Diffstat (limited to 'core/src/window.rs')
-rw-r--r--core/src/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/window.rs b/core/src/window.rs
index 81bd7e3d..a6dbdfb4 100644
--- a/core/src/window.rs
+++ b/core/src/window.rs
@@ -2,12 +2,14 @@
pub mod icon;
mod event;
+mod level;
mod mode;
mod redraw_request;
mod user_attention;
pub use event::Event;
pub use icon::Icon;
+pub use level::Level;
pub use mode::Mode;
pub use redraw_request::RedrawRequest;
pub use user_attention::UserAttention;