diff options
| author | Ignacio Etcheverry | 2016-03-15 13:03:38 +0100 |
|---|---|---|
| committer | Ignacio Etcheverry | 2016-03-15 13:03:38 +0100 |
| commit | fac027cb14a730c1d8cca080dad733663c287a2d (patch) | |
| tree | c1eb71871c4c179f04e13c45c7174c9ef762001b /scene/gui/line_edit.cpp | |
| parent | 4dfd0c1863fca80ddc35b6bcacf339077a0c4f54 (diff) | |
| download | godot-fac027cb14a730c1d8cca080dad733663c287a2d.tar.gz godot-fac027cb14a730c1d8cca080dad733663c287a2d.tar.zst godot-fac027cb14a730c1d8cca080dad733663c287a2d.zip | |
Diffstat (limited to 'scene/gui/line_edit.cpp')
| -rw-r--r-- | scene/gui/line_edit.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 3953ef06a..21dee62b3 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -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) |
