Fix X11 scroll direction
This was inconsistent with the documented semantics of MouseScrollDelta.
This commit is contained in:
parent
2171918023
commit
506e830cb0
1 changed files with 2 additions and 1 deletions
|
|
@ -413,7 +413,8 @@ impl EventsLoop {
|
||||||
device_id: did,
|
device_id: did,
|
||||||
delta: match info.orientation {
|
delta: match info.orientation {
|
||||||
ScrollOrientation::Horizontal => LineDelta(delta as f32, 0.0),
|
ScrollOrientation::Horizontal => LineDelta(delta as f32, 0.0),
|
||||||
ScrollOrientation::Vertical => LineDelta(0.0, delta as f32),
|
// X11 vertical scroll coordinates are opposite to winit's
|
||||||
|
ScrollOrientation::Vertical => LineDelta(0.0, -delta as f32),
|
||||||
},
|
},
|
||||||
phase: TouchPhase::Moved,
|
phase: TouchPhase::Moved,
|
||||||
}});
|
}});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue