summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-25 13:04:00 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-25 13:04:00 -0500
commitcd3c86d60450e6ddab3b0df05c3f978da9154927 (patch)
treed4ff116c9d8a49b0b6aa5318fd18f03cdc43b3a3
parent814187de60466d3b2a823aa020137ec5b71db9ce (diff)
parentab30c682d391496d28e5ba1ab56009e564b39c42 (diff)
downloadredot-engine-cd3c86d60450e6ddab3b0df05c3f978da9154927.tar.gz
Merge pull request #90047 from ajreckof/fix-editing-exported-nodes-in-array-as-text
Fix editing exported nodes in array as text.
-rw-r--r--editor/editor_properties.cpp8
-rw-r--r--editor/editor_properties.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 2e2a18b9d6..158ea4b8a7 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -2648,7 +2648,7 @@ Variant EditorPropertyNodePath::_get_cache_value(const StringName &p_prop, bool
return Variant();
}
-void EditorPropertyNodePath::_node_selected(const NodePath &p_path) {
+void EditorPropertyNodePath::_node_selected(const NodePath &p_path, bool p_absolute) {
NodePath path = p_path;
Node *base_node = get_base_node();
@@ -2658,7 +2658,7 @@ void EditorPropertyNodePath::_node_selected(const NodePath &p_path) {
path = get_tree()->get_edited_scene_root()->get_path_to(to_node);
}
- if (base_node) { // for AnimationTrackKeyEdit
+ if (p_absolute && base_node) { // for AnimationTrackKeyEdit
path = base_node->get_path().rel_path_to(p_path);
}
@@ -2680,7 +2680,7 @@ void EditorPropertyNodePath::_node_assign() {
scene_tree->get_scene_tree()->set_show_enabled_subscene(true);
scene_tree->set_valid_types(valid_types);
add_child(scene_tree);
- scene_tree->connect("selected", callable_mp(this, &EditorPropertyNodePath::_node_selected));
+ scene_tree->connect("selected", callable_mp(this, &EditorPropertyNodePath::_node_selected).bind(true));
}
Variant val = get_edited_property_value();
@@ -2748,7 +2748,7 @@ void EditorPropertyNodePath::_accept_text() {
void EditorPropertyNodePath::_text_submitted(const String &p_text) {
NodePath np = p_text;
- emit_changed(get_edited_property(), np);
+ _node_selected(np, false);
edit->hide();
assign->show();
menu->show();
diff --git a/editor/editor_properties.h b/editor/editor_properties.h
index 004630da3e..9cc72cd5c5 100644
--- a/editor/editor_properties.h
+++ b/editor/editor_properties.h
@@ -628,7 +628,7 @@ class EditorPropertyNodePath : public EditorProperty {
bool editing_node = false;
Vector<StringName> valid_types;
- void _node_selected(const NodePath &p_path);
+ void _node_selected(const NodePath &p_path, bool p_absolute = true);
void _node_assign();
Node *get_base_node();
void _update_menu();