From e3f149d9323742183e239e0958bc0d85212acf0f Mon Sep 17 00:00:00 2001 From: tsuza Date: Wed, 16 Oct 2024 18:17:10 +0200 Subject: feat: add a window drag resize task --- core/src/window.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/src/window.rs') 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; -- cgit