diff options
author | Ivo Wetzel <ivo.wetzel@googlemail.com> | 2016-03-30 08:21:01 +0200 |
---|---|---|
committer | Ivo Wetzel <ivo.wetzel@googlemail.com> | 2016-03-30 08:21:01 +0200 |
commit | 0e9fad5d2350467921af2d2e3ab0b26a1b749080 (patch) | |
tree | 06952222d0be79125f5cd2afca8226d21fc792bc /examples | |
parent | 1b7a3cd31febc38b4d0d39d06f99639469a5823d (diff) | |
parent | 89dd63b9ceac72a7ca274724d2b81033ddb5d4ed (diff) | |
download | glutin-0e9fad5d2350467921af2d2e3ab0b26a1b749080.tar.gz glutin-0e9fad5d2350467921af2d2e3ab0b26a1b749080.zip |
Merge branch 'master' of github.com:tomaka/glutin into x11_window_size_constraints
Diffstat (limited to 'examples')
-rw-r--r-- | examples/grabbing.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/grabbing.rs b/examples/grabbing.rs index 485be78..ad79f1b 100644 --- a/examples/grabbing.rs +++ b/examples/grabbing.rs @@ -35,7 +35,7 @@ fn main() { Event::Closed => break, - a @ Event::MouseMoved(_) => { + a @ Event::MouseMoved(_, _) => { println!("{:?}", a); }, |