mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 09:47:58 +01:00
Changed to ControlU to undo and to ControlR to redo in the TextField.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user