Browse Source

Right shift is also affected.

pull/3320/head
Dariusz Komosinski 7 years ago
parent
commit
e50c6f868a
  1. 1
      src/Windows/Avalonia.Win32/Input/KeyInterop.cs

1
src/Windows/Avalonia.Win32/Input/KeyInterop.cs

@ -379,6 +379,7 @@ namespace Avalonia.Win32.Input
{
Key.LeftAlt => Key.RightAlt,
Key.LeftCtrl => Key.RightCtrl,
Key.LeftShift => Key.RightShift,
_ => result
};
}

Loading…
Cancel
Save