Replies: 1 comment
-
maybe something like this must be considered as well: // LWin and RWin keys will implicitly set Windows key modifier
if (upper.Contains("WIN+", StringComparison.InvariantCulture) ||
upper.EndsWith("LWIN", StringComparison.InvariantCulture) ||
upper.EndsWith("RWIN", StringComparison.InvariantCulture))
{
modifiers |= ModifierKeys.Windows;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
SystemTrayMenu/UserInterface/HotkeyTextboxControl/HotkeyControl.cs
Line 144 in 4cf4b98
Does this look right? all the other keys are checked as bit mask but Win keys are checked with equal?
SystemTrayMenu/UserInterface/HotkeyTextboxControl/HotkeyControl.cs
Lines 129 to 142 in 4cf4b98
Beta Was this translation helpful? Give feedback.
All reactions