We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ec270 commit d96db73Copy full SHA for d96db73
node-graph/graph-craft/src/document.rs
@@ -959,12 +959,8 @@ impl NodeNetwork {
959
if !node.visible && node.implementation != identity_node {
960
node.implementation = identity_node;
961
962
- if node.is_layer {
963
- // Connect layer node to the graphic group below
964
- node.inputs.drain(..1);
965
- } else {
966
- node.inputs.drain(1..);
967
- }
+ // Connect layer node to the graphic group below
+ node.inputs.drain(1..);
968
self.nodes.insert(id, node);
969
970
return;
0 commit comments