Merge pull request #3295 from rachel-fenichel/bugfix/3191

Fix #3191
This commit is contained in:
Rachel Fenichel
2019-10-21 15:52:06 -07:00
committed by GitHub

View File

@@ -531,6 +531,9 @@ Blockly.blockRendering.RenderInfo.prototype.addAlignmentPadding_ = function(row,
if (lastSpacer) {
lastSpacer.width += missingSpace;
row.width += missingSpace;
if (row.hasExternalInput || row.hasStatement) {
row.widthWithConnectedBlocks += missingSpace;
}
}
};