Merge pull request #79 from Smithay/fix/winit_input

Fix winit transformed input
This commit is contained in:
Victor Brekenfeld 2018-03-13 15:03:21 +01:00 committed by GitHub
commit ae41584db9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 18 deletions

View File

@ -360,27 +360,21 @@ impl PointerMotionAbsoluteEvent for WinitMouseMovedEvent {
}
fn x_transformed(&self, width: u32) -> u32 {
cmp::min(
(self.x * width as f64
/ self.window
.window()
.get_inner_size()
.unwrap_or((width, 0))
.0 as f64) as u32,
0,
)
(self.x * width as f64
/ self.window
.window()
.get_inner_size()
.unwrap_or((width, 0))
.0 as f64) as u32
}
fn y_transformed(&self, height: u32) -> u32 {
cmp::min(
(self.y * height as f64
/ self.window
.window()
.get_inner_size()
.unwrap_or((0, height))
.1 as f64) as u32,
0,
)
(self.y * height as f64
/ self.window
.window()
.get_inner_size()
.unwrap_or((0, height))
.1 as f64) as u32
}
}