From ea9eab881ce9e8a4fe3ddf9017ea6ddbe2335a92 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 20 May 2020 18:43:15 +0100 Subject: [PATCH] Changed to ControlU to undo and to ControlR to redo in the TextField. --- Terminal.Gui/Views/TextField.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Terminal.Gui/Views/TextField.cs b/Terminal.Gui/Views/TextField.cs index bd8e939aa..f6e35ed5d 100644 --- a/Terminal.Gui/Views/TextField.cs +++ b/Terminal.Gui/Views/TextField.cs @@ -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;