summaryrefslogtreecommitdiff
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2020-12-19 13:10:05 +0100
committerGitHub <noreply@github.com>2020-12-19 13:10:05 +0100
commitbb53e35ab884b6f0f8658e58fe3cedfb2416ff4d (patch)
treebaa07ddb7ef9e8ceb7643f84da02c8c9a0d90b13 /editor/editor_properties.cpp
parent16524d4ae1d2dc8643b97349dbbba603de77fc2b (diff)
parented1f208ec4c1111a450fe1401c3378b973c7a6e5 (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.cpp4
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);
}
}