Fix statement input height bug (#4486)

This commit is contained in:
alschmiedt
2020-12-01 10:26:46 -08:00
committed by GitHub
parent 2361bcdecd
commit ded97db12e

View File

@@ -41,6 +41,11 @@ Blockly.geras.ConstantProvider = function() {
* @type {number}
*/
this.MAX_BOTTOM_WIDTH = 30;
/**
* @override
*/
this.STATEMENT_BOTTOM_SPACER = -this.NOTCH_HEIGHT / 2;
};
Blockly.utils.object.inherits(Blockly.geras.ConstantProvider,
Blockly.blockRendering.ConstantProvider);