Skip to content

Commit

Permalink
this upsets me more than i should
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Jan 16, 2024
1 parent 0bf6b49 commit ca7b281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/procedures.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Blockly.Procedures.flyoutCategory = function(workspace) {
// </block>
var block = goog.dom.createDom('block');
block.setAttribute('type', 'procedures_call');
block.setAttribute('gap', 16);
block.setAttribute('gap', 12);
block.appendChild(mutation);
xmlList.push(block);
}
Expand All @@ -251,7 +251,7 @@ Blockly.Procedures.flyoutCategory = function(workspace) {
if (showReturn) {
var returnBlock = goog.dom.createDom('block');
returnBlock.setAttribute('type', Blockly.PROCEDURES_RETURN_BLOCK_TYPE);
returnBlock.setAttribute('gap', 16);
returnBlock.setAttribute('gap', 12);
var returnBlockValue = goog.dom.createDom('value');
returnBlockValue.setAttribute('name', 'VALUE');
var returnBlockShadow = goog.dom.createDom('shadow');
Expand Down

0 comments on commit ca7b281

Please sign in to comment.