From 6e987477ba196bb4f995f9ba317bfbca73c2f245 Mon Sep 17 00:00:00 2001 From: crusader Date: Wed, 16 Dec 2020 01:23:59 +0900 Subject: [PATCH] debugging --- src/windows/mouse.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/windows/mouse.rs b/src/windows/mouse.rs index bcf3d8b..c295ef0 100644 --- a/src/windows/mouse.rs +++ b/src/windows/mouse.rs @@ -209,13 +209,13 @@ impl Robot { _ => None, } } - WM_MOUSEMOVE => { - let (x, y) = Self::get_mouse_point(l_param); - Some(EventType::MouseMoveTo { - x: x as f64, - y: y as f64, - }) - } + // WM_MOUSEMOVE => { + // let (x, y) = Self::get_mouse_point(l_param); + // Some(EventType::MouseMoveTo { + // x: x as f64, + // y: y as f64, + // }) + // } _ => None, };