Skip to content

Commit

Permalink
remove dat goofy gap
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkPool-SP authored Aug 18, 2024
1 parent 9e368f3 commit baa2f85
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/procedures.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Blockly.Procedures.flyoutCategory = function(workspace) {
'</block>' +
'</xml>';
var block = Blockly.Xml.textToDom(blockText).firstChild;
var gap = Blockly.Xml.textToDom(gapText).firstChild
var gap = Blockly.Xml.textToDom(gapText).firstChild;
xmlList.push(gap); xmlList.push(block);
blockText =
'<xml>' +
Expand All @@ -267,8 +267,7 @@ Blockly.Procedures.flyoutCategory = function(workspace) {
'</block>' +
'</xml>';
block = Blockly.Xml.textToDom(blockText).firstChild;
gap = Blockly.Xml.textToDom(gapText).firstChild
xmlList.push(gap); xmlList.push(block);
xmlList.push(block);
return xmlList;
};

Expand Down

0 comments on commit baa2f85

Please sign in to comment.