diff options
| author | ray90514 <ray90514@hotmail.com> | 2021-04-08 23:43:50 +0800 |
|---|---|---|
| committer | ray90514 <ray90514@hotmail.com> | 2021-04-08 23:47:54 +0800 |
| commit | 7501c7f48aae218b693b5b37af6a00380457240e (patch) | |
| tree | 6863d50e0862a42e8ca4b1ed69f0f12a622a0651 /scene | |
| parent | 35066f39ff111ee0e9d4aba534bb08fc2d686156 (diff) | |
| download | redot-engine-7501c7f48aae218b693b5b37af6a00380457240e.tar.gz | |
Fix LineEdit undo behaves strangely
Diffstat (limited to 'scene')
| -rw-r--r-- | scene/gui/line_edit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 2d8eb3191c..6282549ab4 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -1234,6 +1234,7 @@ void LineEdit::delete_text(int p_from_column, int p_to_column) { void LineEdit::set_text(String p_text) { clear_internal(); append_at_cursor(p_text); + _create_undo_state(); update(); cursor_pos = 0; |
