mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix right clicking sub nodes after renaming parent
This commit is contained in:
parent
a4b80cdad9
commit
f25a698f80
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ void SceneTreeEditor::_node_removed(Node *p_node) {
|
|||
}
|
||||
|
||||
void SceneTreeEditor::_node_renamed(Node *p_node) {
|
||||
if (!get_scene_node()->is_ancestor_of(p_node)) {
|
||||
if (p_node != get_scene_node() && !get_scene_node()->is_ancestor_of(p_node)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue