mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
send the node id properly in node added to group signal
This commit is contained in:
parent
9a40aa3717
commit
7a95121330
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ func add_node_inst(node: DeckNode, assign_id: String = "", assign_to_self: bool
|
||||||
|
|
||||||
node_added.emit(node)
|
node_added.emit(node)
|
||||||
if is_group && emit_group_signals:
|
if is_group && emit_group_signals:
|
||||||
node_added_to_group.emit(node, assign_id, assign_to_self, self)
|
node_added_to_group.emit(node, node._id, assign_to_self, self)
|
||||||
|
|
||||||
node.port_value_updated.connect(
|
node.port_value_updated.connect(
|
||||||
func(port_idx: int, new_value: Variant):
|
func(port_idx: int, new_value: Variant):
|
||||||
|
|
Loading…
Reference in a new issue