workgroupengineering
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/Browser/Avalonia.Browser/AvaloniaView.cs
|
|
|
@ -256,7 +256,7 @@ namespace Avalonia.Browser |
|
|
|
|
|
|
|
private bool OnWheel(JSObject args) |
|
|
|
{ |
|
|
|
return _topLevelImpl.RawMouseWheelEvent(new Point(args.GetPropertyAsDouble("clientX"), args.GetPropertyAsDouble("clientY")), |
|
|
|
return _topLevelImpl.RawMouseWheelEvent(new Point(args.GetPropertyAsDouble("offsetX"), args.GetPropertyAsDouble("offsetY")), |
|
|
|
new Vector(-(args.GetPropertyAsDouble("deltaX") / 50), -(args.GetPropertyAsDouble("deltaY") / 50)), GetModifiers(args)); |
|
|
|
} |
|
|
|
|
|
|
|
|