Merge pull request #82287 from jsjtxietian/fix-clear-error-when-unset-exported-typed-array-vai-editor

Fix can't unset exported typed array element when the type is set to Node
This commit is contained in:
Rémi Verschelde 2023-09-26 08:31:01 +02:00
commit 563d225654
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -2818,7 +2818,7 @@ void EditorPropertyNodePath::_node_assign() {
}
void EditorPropertyNodePath::_node_clear() {
emit_changed(get_edited_property(), NodePath());
emit_changed(get_edited_property(), Variant());
update_property();
}