LineEdit/TextEdit: Add Shift+Delete shortcut for cut
(cherry picked from commit fac027cb14
)
This commit is contained in:
parent
a701c6ff68
commit
cacf7d136f
|
@ -274,6 +274,11 @@ void LineEdit::_input_event(InputEvent p_event) {
|
|||
} break;
|
||||
case KEY_DELETE: {
|
||||
|
||||
if (k.mod.shift && !k.mod.command && !k.mod.alt && editable) {
|
||||
cut_text();
|
||||
break;
|
||||
}
|
||||
|
||||
if (editable) {
|
||||
undo_text = text;
|
||||
if (selection.enabled)
|
||||
|
|
|
@ -1936,6 +1936,12 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
|||
|
||||
if (readonly)
|
||||
break;
|
||||
|
||||
if (k.mod.shift && !k.mod.command && !k.mod.alt) {
|
||||
cut();
|
||||
break;
|
||||
}
|
||||
|
||||
int curline_len = text[cursor.line].length();
|
||||
|
||||
if (cursor.line==text.size()-1 && cursor.column==curline_len)
|
||||
|
|
Loading…
Reference in New Issue