Skip to content

Commit

Permalink
fixes #79 where keystrokes for /'\` were not displayed correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckelwin committed Jul 30, 2022
1 parent 3a37f3d commit 4e6b6f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions KeyNStroke/SpecialkeysParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ public static string ToString(Key k)
case Key.OemComma:
return ",";
case Key.OemQuestion: // Key.Oem2
return "?";
return "/";
case Key.OemTilde: // Key.Oem3
return "~";
return "`";
//case Key.AbntC1:
//case Key.AbntC2:
//case Key.OemOpenBrackets:
//case Key.OemCloseBrackets:
case Key.OemQuotes: // Key.Oem7
return "\"";
return "'";

//case Key.Oem102:
case Key.OemPipe: // Key.Oem5
return "|";
return "\\";
case Key.OemBackslash:
return "\\";

Expand Down

0 comments on commit 4e6b6f4

Please sign in to comment.