diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2020-12-19 13:10:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 13:10:05 +0100 |
commit | bb53e35ab884b6f0f8658e58fe3cedfb2416ff4d (patch) | |
tree | baa07ddb7ef9e8ceb7643f84da02c8c9a0d90b13 /editor/editor_properties.cpp | |
parent | 16524d4ae1d2dc8643b97349dbbba603de77fc2b (diff) | |
parent | ed1f208ec4c1111a450fe1401c3378b973c7a6e5 (diff) |
Merge pull request #44326 from AndreaCatania/AndreaCatania-patch-5
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); } } |