Browse Source

Merge branch 'master' into fix-tray-menu-issue

pull/9620/head
Max Katz 3 years ago
committed by GitHub
parent
commit
d047b51018
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/Avalonia.Base/Input/Platform/PlatformHotkeyConfiguration.cs

6
src/Avalonia.Base/Input/Platform/PlatformHotkeyConfiguration.cs

@ -20,7 +20,8 @@ namespace Avalonia.Input.Platform
WholeWordTextActionModifiers = wholeWordTextActionModifiers;
Copy = new List<KeyGesture>
{
new KeyGesture(Key.C, commandModifiers)
new KeyGesture(Key.C, commandModifiers),
new KeyGesture(Key.Insert, KeyModifiers.Control)
};
Cut = new List<KeyGesture>
{
@ -28,7 +29,8 @@ namespace Avalonia.Input.Platform
};
Paste = new List<KeyGesture>
{
new KeyGesture(Key.V, commandModifiers)
new KeyGesture(Key.V, commandModifiers),
new KeyGesture(Key.Insert, KeyModifiers.Shift)
};
Undo = new List<KeyGesture>
{

Loading…
Cancel
Save