capdj
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.X11/XI2Manager.cs
|
|
|
@ -351,7 +351,7 @@ namespace Avalonia.X11 |
|
|
|
if (state.HasFlag(XModifierMask.Mod4Mask)) |
|
|
|
Modifiers |= RawInputModifiers.Meta; |
|
|
|
|
|
|
|
Modifiers = ParseButtonState(ev->buttons.MaskLen, ev->buttons.Mask); |
|
|
|
Modifiers |= ParseButtonState(ev->buttons.MaskLen, ev->buttons.Mask); |
|
|
|
|
|
|
|
Valuators = new Dictionary<int, double>(); |
|
|
|
Position = new Point(ev->event_x, ev->event_y); |
|
|
|
|