diff options
author | 2020-01-10 01:28:45 +0100 | |
---|---|---|
committer | 2020-01-10 01:28:45 +0100 | |
commit | 7ab6ed7ef912011318e07533e40fc98f4a846511 (patch) | |
tree | 626692c9269231497f52e6acc2fcbd7f194b264d /native/src/lib.rs | |
parent | 0a8302450557877cb667b51fc84383aaf0a11b02 (diff) | |
download | iced-7ab6ed7ef912011318e07533e40fc98f4a846511.tar.gz iced-7ab6ed7ef912011318e07533e40fc98f4a846511.tar.bz2 iced-7ab6ed7ef912011318e07533e40fc98f4a846511.zip |
Add `window::Event::Resized` to `iced_native`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index 8dcacb2b..e65c6596 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -44,6 +44,7 @@ pub mod layout; pub mod renderer; pub mod subscription; pub mod widget; +pub mod window; mod clipboard; mod element; |