Gtk: Use Ctrl+Shift+Z instead of Ctrl+Y for redo

This commit is contained in:
Ben Olden-Cooligan 2024-03-10 20:55:36 -07:00
parent f03bd76799
commit 939d314a44
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ public class DesktopKeyboardShortcuts
_ksm.Assign("Ctrl+C", commands.Copy);
_ksm.Assign("Ctrl+V", commands.Paste);
_ksm.Assign("Ctrl+Z", commands.Undo);
_ksm.Assign("Ctrl+Y", commands.Redo);
_ksm.Assign(EtoPlatform.Current.IsGtk ? "Ctrl+Shift+Z" : "Ctrl+Y", commands.Redo);
// Configured

View File

@ -348,7 +348,7 @@ public class PreviewForm : EtoDialogBase
_ksm.Assign("Ctrl+OemMinus", ZoomOutCommand);
_ksm.Assign("Ctrl+0", ZoomActualCommand);
_ksm.Assign("Ctrl+Z", Commands.Undo);
_ksm.Assign("Ctrl+Y", Commands.Redo);
_ksm.Assign(EtoPlatform.Current.IsGtk ? "Ctrl+Shift+Z" : "Ctrl+Y", Commands.Redo);
// Configured