You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With latest prerelease package (0.7.0-build429-beta), on OSX, when I press Ctrl+A, Key_Up event (or other key events) send me an Avalonia.InputKeyEventArgs.Key == Avalonia.Input.Key.Q
Common shortcut like undo/redo (ctrl+z/ctrl+y) are also map on querty schema instead of azerty.
But inside a textbox the mapping is correct.
The text was updated successfully, but these errors were encountered:
Hey there,
I'm experiencing kind of the same problem on v. 0.10.18.
My keyboard is an azerty one. When I run my app on Windows the mapping is correct, but when I run it on mac it maps like a qwerty (so my A key raises a Q key pressed event for example).
Any idea on how to make it work correctly?
Edit: it works correctly in a textbox, even on Mac (A key writes a 'a' in the textbox, although it raises a Q pressed event). But in my case I need the keys for KeyBindings so the wrong mapping is a problem
With latest prerelease package (0.7.0-build429-beta), on OSX, when I press
Ctrl+A
,Key_Up
event (or other key events) send me anAvalonia.InputKeyEventArgs.Key
==Avalonia.Input.Key.Q
Common shortcut like undo/redo (ctrl+z/ctrl+y) are also map on querty schema instead of azerty.
But inside a textbox the mapping is correct.
The text was updated successfully, but these errors were encountered: