From 1aecb78dd18ac84c499225aaf8e4c72430eca047 Mon Sep 17 00:00:00 2001 From: picklesrus Date: Thu, 9 Jun 2016 02:35:32 -0700 Subject: [PATCH] Fix issue #406 by calling resize from the keypress handler on text inputs. (#408) --- core/field_textinput.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/field_textinput.js b/core/field_textinput.js index 0781e1c04..994db7263 100644 --- a/core/field_textinput.js +++ b/core/field_textinput.js @@ -198,6 +198,7 @@ Blockly.FieldTextInput.prototype.onHtmlInputChange_ = function(e) { this.sourceBlock_.render(); } this.resizeEditor_(); + Blockly.svgResize(this.sourceBlock_.workspace); }; /**