Skip to content

Commit 4e6b6f4

Browse files
committed
fixes #79 where keystrokes for /'\` were not displayed correctly.
1 parent 3a37f3d commit 4e6b6f4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

KeyNStroke/SpecialkeysParser.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ public static string ToString(Key k)
8888
case Key.OemComma:
8989
return ",";
9090
case Key.OemQuestion: // Key.Oem2
91-
return "?";
91+
return "/";
9292
case Key.OemTilde: // Key.Oem3
93-
return "~";
93+
return "`";
9494
//case Key.AbntC1:
9595
//case Key.AbntC2:
9696
//case Key.OemOpenBrackets:
9797
//case Key.OemCloseBrackets:
9898
case Key.OemQuotes: // Key.Oem7
99-
return "\"";
99+
return "'";
100100

101101
//case Key.Oem102:
102102
case Key.OemPipe: // Key.Oem5
103-
return "|";
103+
return "\\";
104104
case Key.OemBackslash:
105105
return "\\";
106106

0 commit comments

Comments
 (0)