diff options
author | 2024-10-16 18:17:10 +0200 | |
---|---|---|
committer | 2025-01-16 11:17:00 +0000 | |
commit | e3f149d9323742183e239e0958bc0d85212acf0f (patch) | |
tree | b67a7184ac8eb0bb89e5410025a7d83d6985abf7 /core/src/window.rs | |
parent | a00f564deed291765a35311784096193dc3988b3 (diff) | |
download | iced-e3f149d9323742183e239e0958bc0d85212acf0f.tar.gz iced-e3f149d9323742183e239e0958bc0d85212acf0f.tar.bz2 iced-e3f149d9323742183e239e0958bc0d85212acf0f.zip |
feat: add a window drag resize task
Diffstat (limited to 'core/src/window.rs')
-rw-r--r-- | core/src/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/window.rs b/core/src/window.rs index a3389998..d0e741d8 100644 --- a/core/src/window.rs +++ b/core/src/window.rs @@ -3,6 +3,7 @@ pub mod icon; pub mod screenshot; pub mod settings; +mod direction; mod event; mod id; mod level; @@ -11,6 +12,7 @@ mod position; mod redraw_request; mod user_attention; +pub use direction::Direction; pub use event::Event; pub use icon::Icon; pub use id::Id; |