diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-30 08:51:11 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 08:51:11 -0300 |
commit | 503244d452a8603e05b72e7e018fdc2f9a8bedf2 (patch) | |
tree | 8f99a2b6042fadf8afde25f0e41c9a69d9651270 | |
parent | 61d681cfb9a89f5c32a6c85e8f1cf53360c6eddb (diff) | |
parent | 847d9c29c783bfe8d2ba1ea383889d01020c81be (diff) |
Merge pull request #52245 from AndreaCatania/AndreaCatania-patch-4
EditorPropertyText, pass changing variable false.
-rw-r--r-- | editor/editor_properties.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index cb7fffe592..9507833746 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -68,9 +68,9 @@ void EditorPropertyText::_text_changed(const String &p_string) { } if (string_name) { - emit_changed(get_edited_property(), StringName(p_string), "", true); + emit_changed(get_edited_property(), StringName(p_string)); } else { - emit_changed(get_edited_property(), p_string, "", true); + emit_changed(get_edited_property(), p_string); } } |