Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Xwt
diff options
context:
space:
mode:
authoriain holmes <iaholmes@microsoft.com>2021-09-07 21:52:28 +0300
committeriain holmes <iaholmes@microsoft.com>2021-09-08 18:28:56 +0300
commit6c3353358e445ce94c4948afeff0522b7ee6fabb (patch)
treee7eb1ba3062aa302ad6965f20626c91ed1663f09 /Xwt
parentfccff06ea812881862d020a3f19df601231ca4dd (diff)
Fix the Xwt Key conversion
For uppercase letters, cocoa returns Shift+A when we want Shift+a For punctuation, cocoa returns Shift+_ when we want _
Diffstat (limited to 'Xwt')
-rw-r--r--Xwt/Xwt/Key.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xwt/Xwt/Key.cs b/Xwt/Xwt/Key.cs
index e0ff3124..1cceb120 100644
--- a/Xwt/Xwt/Key.cs
+++ b/Xwt/Xwt/Key.cs
@@ -143,7 +143,6 @@ namespace Xwt
Find = 0xff68,
Break = 0xff6b,
NumLock = 0xff7f,
- Equal = 0xffbd,
ShiftLeft = 0xffe1,
ShiftRight = 0xffe2,
ControlLeft = 0xffe3,
@@ -182,6 +181,7 @@ namespace Xwt
Colon = 0x3a,
Semicolon = 0x3b,
Less = 0x3c,
+ Equal = 0x3d,
Greater = 0x3e,
Question = 0x3f,
At = 0x40,