From 117069ef9023665085564c4c20a9525c9e139de2 Mon Sep 17 00:00:00 2001 From: Richard Lettich Date: Sun, 27 Mar 2016 14:39:20 -0400 Subject: Changed MouseMoved((i32, i32)) to MouseMoved(i32, i32), breaking change --- src/events.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/events.rs') diff --git a/src/events.rs b/src/events.rs index 9fff1fb..d13a0bf 100644 --- a/src/events.rs +++ b/src/events.rs @@ -28,7 +28,7 @@ pub enum Event { /// The cursor has moved on the window. /// /// The parameter are the (x,y) coords in pixels relative to the top-left corner of the window. - MouseMoved((i32, i32)), + MouseMoved(i32, i32), /// A mouse wheel movement or touchpad scroll occurred. MouseWheel(MouseScrollDelta, TouchPhase), -- cgit v1.2.3