From da3e5c44248fdb12b700e3a99c3e777c57942dc7 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sun, 20 Oct 2024 09:13:00 +0300 Subject: Implement touch interactive resize --- src/input/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/input/mod.rs') diff --git a/src/input/mod.rs b/src/input/mod.rs index 11612f2f..07c77e8c 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -46,6 +46,7 @@ pub mod scroll_tracker; pub mod spatial_movement_grab; pub mod swipe_tracker; pub mod touch_move_grab; +pub mod touch_resize_grab; pub const DOUBLE_CLICK_TIME: Duration = Duration::from_millis(400); -- cgit