Merge pull request #52245 from AndreaCatania/AndreaCatania-patch-4

EditorPropertyText, pass changing variable false.
This commit is contained in:
Juan Linietsky 2021-08-30 08:51:11 -03:00 committed by GitHub
commit 503244d452
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));
} else {
emit_changed(get_edited_property(), p_string, "", true);
emit_changed(get_edited_property(), p_string);
}
}