Fix issue #406 by calling resize from the keypress handler on text inputs. (#408)

This commit is contained in:
picklesrus
2016-06-09 02:35:32 -07:00
committed by Neil Fraser
parent e4900fc27c
commit 1aecb78dd1

View File

@@ -198,6 +198,7 @@ Blockly.FieldTextInput.prototype.onHtmlInputChange_ = function(e) {
this.sourceBlock_.render();
}
this.resizeEditor_();
Blockly.svgResize(this.sourceBlock_.workspace);
};
/**