diff options
author | Andrea Catania <info@andreacatania.com> | 2020-12-12 19:22:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 19:22:47 +0100 |
commit | ed1f208ec4c1111a450fe1401c3378b973c7a6e5 (patch) | |
tree | 4625460af1ff137da1acdcc0448e1c902d3aefef /editor/editor_properties.cpp | |
parent | 3b4fad435c2856398f87b6f010013ce1a114b31b (diff) |
Fixed EditorPropertyText change signal emission.
Diffstat (limited to 'editor/editor_properties.cpp')
-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 2c4e403a81..523e65babe 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), "", false); } else { - emit_changed(get_edited_property(), p_string, "", true); + emit_changed(get_edited_property(), p_string, "", false); } } |