diff options
author | 2021-09-02 16:30:14 +0700 | |
---|---|---|
committer | 2021-09-02 16:30:14 +0700 | |
commit | 7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51 (patch) | |
tree | bd07aaa553b5163f91073f19a58a76a4a3fed03b /winit/src/lib.rs | |
parent | 6fce35393fb2dc3dcbc5f423fa8472f5ce1f7027 (diff) | |
download | iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.gz iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.bz2 iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.zip |
Implement `move_to` and `resize` commands for `window`
Diffstat (limited to 'winit/src/lib.rs')
-rw-r--r-- | winit/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 12df9d8e..30813152 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -28,6 +28,7 @@ pub mod application; pub mod clipboard; pub mod conversion; pub mod settings; +pub mod window; mod error; mod mode; |