summaryrefslogtreecommitdiffstats
path: root/core/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-25 23:14:07 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-25 23:14:07 +0200
commita7fa7e40058188c95a790712e11b863a9f84cecb (patch)
tree988852e1e54e4af416332108983ee4ccf91e912a /core/src/window.rs
parentb924e866308d60432729932afc4c642a00575c43 (diff)
downloadiced-a7fa7e40058188c95a790712e11b863a9f84cecb.tar.gz
iced-a7fa7e40058188c95a790712e11b863a9f84cecb.tar.bz2
iced-a7fa7e40058188c95a790712e11b863a9f84cecb.zip
Introduce `window::Level` enum
... and add `level` field to `window::Settings`
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;