aboutsummaryrefslogtreecommitdiffstats
path: root/src/events.rs
diff options
context:
space:
mode:
authorRichard Lettich <lettrich42@gmail.com>2016-03-27 14:39:20 -0400
committerRichard Lettich <lettrich42@gmail.com>2016-03-27 14:39:20 -0400
commit117069ef9023665085564c4c20a9525c9e139de2 (patch)
tree3cb9607c207560325129c186942ded4c79d227ca /src/events.rs
parent8ae2df68e19ca71453af5e11de9ca807ef7adcb4 (diff)
downloadglutin-117069ef9023665085564c4c20a9525c9e139de2.tar.gz
glutin-117069ef9023665085564c4c20a9525c9e139de2.zip
Changed MouseMoved((i32, i32)) to MouseMoved(i32, i32), breaking change
Diffstat (limited to 'src/events.rs')
-rw-r--r--src/events.rs2
1 files changed, 1 insertions, 1 deletions
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),