Skip to content

Commit

Permalink
Allow drop anywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Feb 12, 2024
1 parent 3bb4bd6 commit 55fd62e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions blocks_vertical/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ Blockly.Blocks['data_variable'] = {
"variableType": ""
}
],
"output": null,
"category": Blockly.Categories.data,
"checkboxInFlyout": true,
"extensions": ["contextMenu_getVariableBlock", "colours_data", "output_string"]
"extensions": ["contextMenu_getVariableBlock", "colours_data"],
"outputShape": Blockly.OUTPUT_SHAPE_ROUND
});
}
};
Expand Down Expand Up @@ -182,9 +184,11 @@ Blockly.Blocks['data_listcontents'] = {
"variableType": Blockly.LIST_VARIABLE_TYPE
}
],
"output": null,
"category": Blockly.Categories.dataLists,
"extensions": ["contextMenu_getListBlock", "colours_data_lists", "output_string"],
"checkboxInFlyout": true
"checkboxInFlyout": true,
"extensions": ["contextMenu_getListBlock", "colours_data_lists"],
"outputShape": Blockly.OUTPUT_SHAPE_ROUND
});
}
};
Expand Down

0 comments on commit 55fd62e

Please sign in to comment.