aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/x11/input.rs')
-rw-r--r--src/api/x11/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/x11/input.rs b/src/api/x11/input.rs
index a05b22e..310f1bc 100644
--- a/src/api/x11/input.rs
+++ b/src/api/x11/input.rs
@@ -241,7 +241,7 @@ impl XInputEventHandler {
let new_cursor_pos = (event_data.event_x, event_data.event_y);
if new_cursor_pos != self.current_state.cursor_pos {
self.current_state.cursor_pos = new_cursor_pos;
- Some(MouseMoved((new_cursor_pos.0 as i32, new_cursor_pos.1 as i32)))
+ Some(MouseMoved(new_cursor_pos.0 as i32, new_cursor_pos.1 as i32))
} else {
None
}