summaryrefslogtreecommitdiffstats
path: root/native/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-08-18 14:39:15 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-08-18 14:39:15 +0200
commit11f5527d7645619f49b030e30485f24ac637efbd (patch)
tree489f7cfbb134b8736290f30010fe680a31c90423 /native/src/window.rs
parent277b848ad8df1e8d038e33707548a45d63a601db (diff)
downloadiced-11f5527d7645619f49b030e30485f24ac637efbd.tar.gz
iced-11f5527d7645619f49b030e30485f24ac637efbd.tar.bz2
iced-11f5527d7645619f49b030e30485f24ac637efbd.zip
Implement `SetMode` and `FetchMode` window actions
Diffstat (limited to 'native/src/window.rs')
-rw-r--r--native/src/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs
index 62487fb9..f910b8f2 100644
--- a/native/src/window.rs
+++ b/native/src/window.rs
@@ -1,6 +1,8 @@
//! Build window-based GUI applications.
mod action;
mod event;
+mod mode;
pub use action::Action;
pub use event::Event;
+pub use mode::Mode;