Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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