We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870f62f commit 3f11b01Copy full SHA for 3f11b01
src/Avalonia.Diagnostics/Diagnostics/Views/MainWindow.xaml.cs
@@ -163,7 +163,9 @@ private void RawKeyDown(RawKeyEventArgs e)
163
164
switch (e.Modifiers)
165
{
166
- case RawInputModifiers.Control | RawInputModifiers.Shift:
+ case RawInputModifiers.Control when (e.Key == Key.LeftShift || e.Key == Key.RightShift):
167
+ case RawInputModifiers.Shift when (e.Key == Key.LeftCtrl || e.Key == Key.RightCtrl):
168
+ case RawInputModifiers.Shift | RawInputModifiers.Control:
169
170
IControl? control = null;
171
0 commit comments