Skip to content

Commit 50bcf91

Browse files
committed
fix bug where Pin#values was not connected when node gets from frontend to cluster
1 parent 693a9ab commit 50bcf91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/vvvv.core.cluster.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,11 @@ define(function(require,exports) {
4141
var fromPin = node.inputPins[pinname].links[0].fromPin;
4242
if (node.inCluster)
4343
fromPin.edgeLinkCount--;
44-
if (fromPin.edgeLinkCount<=0)
44+
if (fromPin.edgeLinkCount<=0) {
4545
fromPin.clusterEdge = false;
46+
if (fromPin.values!=node.inputPins[pinname].values)
47+
node.inputPins[pinname].connect(fromPin);
48+
}
4649
}
4750
}
4851

0 commit comments

Comments
 (0)