Changed to ControlU to undo and to ControlR to redo in the TextField.

This commit is contained in:
BDisp
2020-05-20 18:43:15 +01:00
parent a29ca06fc8
commit ea9eab881c

View File

@@ -401,7 +401,7 @@ namespace Terminal.Gui {
break;
// Undo
case Key.ControlZ:
case Key.ControlU:
if (ReadOnly)
return true;
@@ -417,7 +417,7 @@ namespace Terminal.Gui {
break;
//Redo
case Key.ControlY: // Control-y, yank
case Key.ControlR: // Control-y, yank
if (ReadOnly)
return true;