From 3af4a6848af0beceec3d48c498e186b90e72d74f Mon Sep 17 00:00:00 2001 From: miguel76 Date: Sat, 9 Apr 2016 12:18:27 -0300 Subject: [PATCH] Fix inconsistent behaviour --- core/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/input.js b/core/input.js index 8ca265586..5b3a46fa5 100644 --- a/core/input.js +++ b/core/input.js @@ -222,7 +222,7 @@ Blockly.Input.prototype.init = function() { return; // Headless blocks don't need fields initialized. } for (var x = 0; x < this.fieldRow.length; x++) { - this.fieldRow[x].init(this.sourceBlock_); + this.fieldRow[x].init(); } };