From 2f08f996ca82efd5db12dcb4e0662a69081845cd Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Mon, 22 May 2017 14:07:57 -0700 Subject: [PATCH] fix separators in flyouts in toolboxes with categories (#897) --- core/toolbox.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/toolbox.js b/core/toolbox.js index 312d6020..5794d795 100644 --- a/core/toolbox.js +++ b/core/toolbox.js @@ -535,6 +535,7 @@ Blockly.Toolbox.Category.prototype.parseContents_ = function(domTree) { case 'SHADOW': case 'LABEL': case 'BUTTON': + case 'SEP': case 'TEXT': this.contents_.push(child); break;