Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit cd74c28

Browse files
committed
Reverses 36c89b2
1 parent d82032a commit cd74c28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Xwt.XamMac/Xwt.Mac/KeyboardUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ static Key GetXwtKey (NSEvent keyEvent, out NSEventModifierMask modMask)
128128
// If you press the cmd+м on the keyboard, keyEvent.Characters contains a 'v' and keyEvent.CharactersIgnoringModifiers
129129
// contains the м
130130
// This way it can map cmd+м to paste like on a roman keyboard.
131-
var characters = keyEvent.Characters;
131+
var characters = keyEvent.CharactersIgnoringModifiers;
132132
if (characters.Length > 0)
133133
switch (characters[0]) {
134134
case 'A': return Key.a;

0 commit comments

Comments
 (0)