Revert "Fixed EditorPropertyText change signal emission."

This reverts commit ed1f208ec4.

This caused a regression: #44854.

Another PR will re-apply these changes while handling the regression: #44982.

Fixes #44854.
This commit is contained in:
Rémi Verschelde 2021-01-07 10:32:03 +01:00
parent 8158d17edf
commit 6583ac32ce
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 2 deletions

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), "", false);
emit_changed(get_edited_property(), StringName(p_string), "", true);
} else {
emit_changed(get_edited_property(), p_string, "", false);
emit_changed(get_edited_property(), p_string, "", true);
}
}