Commit a6e37ae2 by Rémi Verschelde Committed by GitHub

Merge pull request #10600 from MasonAsh/fix-10596

Script editor: fixed no key repeat for CTRL+Y
parents 9c71da00 9def3112
......@@ -2736,6 +2736,15 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
else
undo();
} break;
case KEY_Y: {
if (!k->get_command()) {
scancode_handled = false;
break;
}
redo();
} break;
case KEY_V: {
if (readonly) {
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment