Keep binds for connected signals when changing node type

This commit is contained in:
Kanabenki 2019-03-19 10:21:52 +01:00
parent a53645e726
commit a1e7febbb3
1 changed files with 1 additions and 1 deletions

View File

@ -1801,7 +1801,7 @@ void SceneTreeDock::replace_node(Node *p_node, Node *p_by_node, bool p_keep_prop
Object::Connection &c = F->get();
if (!(c.flags & Object::CONNECT_PERSIST))
continue;
newnode->connect(c.signal, c.target, c.method, varray(), Object::CONNECT_PERSIST);
newnode->connect(c.signal, c.target, c.method, c.binds, Object::CONNECT_PERSIST);
}
}