We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45bfd59 commit 252a143Copy full SHA for 252a143
1 file changed
core/connection.js
@@ -534,7 +534,7 @@ Blockly.Connection.prototype.connect = function(otherConnection) {
534
this.connect_(otherConnection);
535
} else {
536
// Inferior block.
537
- if (!this.check_ && otherConnection.check_) {
+ if (!this.check_ || otherConnection.check_) {
538
// reshape the connected block so it inherits the parent shape
539
const block = this.sourceBlock_;
540
if (block.originalOutputShape_ === undefined) block.originalOutputShape_ = block.outputShape_;
0 commit comments