Fixed EditorPropertyText change signal emission.

This commit is contained in:
Andrea Catania 2020-12-12 19:22:47 +01:00 committed by GitHub
parent 3b4fad435c
commit ed1f208ec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
}