Remove forceRerender() from FieldDropDown.

Errantly forced whole block to rerender, including fields that
had not yet been initialized.

Fixes #1609
This commit is contained in:
Andrew n marshall
2018-02-13 15:01:33 -08:00
parent 9d01adf269
commit 32b7a8ea6b

View File

@@ -131,8 +131,6 @@ Blockly.FieldDropdown.prototype.init = function() {
' ' + Blockly.FieldDropdown.ARROW_CHAR));
Blockly.FieldDropdown.superClass_.init.call(this);
// Make sure the arrow gets rendered.
this.forceRerender();
};
/**