1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

TextEdit: Fix Shift+Delete shortcut not calling cut()

(cherry picked from commit abb720438f)
This commit is contained in:
Ignacio Etcheverry
2016-03-19 13:22:44 +01:00
committed by Rémi Verschelde
parent 41cc4ffe98
commit cf0a586a3e

View File

@@ -1630,6 +1630,13 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
clear=(!k.mod.command || k.mod.shift || k.mod.alt );
break;
case KEY_DELETE:
if (!k.mod.shift) {
accept_event();
clear=true; dobreak=true;
} else if (k.mod.command || k.mod.alt) {
dobreak=true;
}
break;
case KEY_BACKSPACE:
accept_event();
clear=true; dobreak=true;