summaryrefslogtreecommitdiffstats
path: root/core/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor <hector@hecrj.dev>2025-01-16 11:44:15 +0000
committerLibravatar GitHub <noreply@github.com>2025-01-16 11:44:15 +0000
commit24297c549be022ee1e848c0c090df986e825f10c (patch)
tree10d10bf65d41de0d04ea7ae8037dd49681f3916b /core/src/window.rs
parenta00f564deed291765a35311784096193dc3988b3 (diff)
parent8a453903b99dd2855e556f5f8baab502441eb16b (diff)
downloadiced-24297c549be022ee1e848c0c090df986e825f10c.tar.gz
iced-24297c549be022ee1e848c0c090df986e825f10c.tar.bz2
iced-24297c549be022ee1e848c0c090df986e825f10c.zip
Merge pull request #2642 from tsuza/master
feat: add a window drag resize task
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 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;