summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2023-09-25 14:23:05 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2023-09-25 14:23:05 +0800
commita46901278d735c2c7d8d2599558dc54b63ae2e07 (patch)
treecb1af27c3af5865d95767c6442f91249ffaae0a4 /editor/editor_properties.cpp
parent5c43e4c1efc85856a4e918bc67e1266657b9110c (diff)
downloadredot-engine-a46901278d735c2c7d8d2599558dc54b63ae2e07.tar.gz
Fix can't unset exported typed array element when the type is set to Node
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r--editor/editor_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 2a82b2cde4..34598197d4 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -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();
}