Skip to content

Commit

Permalink
disable collapsed option for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jwklong authored Dec 8, 2024
1 parent 6847269 commit fee61c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/block_svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ Blockly.BlockSvg.prototype.showContextMenu_ = function(e) {
if (this.isEditable() && this.workspace.options.comments) {
menuOptions.push(Blockly.ContextMenu.blockCommentOption(block));
}
menuOptions.push(Blockly.ContextMenu.blockCollapseOption(block));
//menuOptions.push(Blockly.ContextMenu.blockCollapseOption(block));
menuOptions.push(Blockly.ContextMenu.blockDeleteOption(block));
} else if (this.parentBlock_ && this.isShadow_ && this.type !== 'polygon') {
this.parentBlock_.showContextMenu_(e);
Expand Down

0 comments on commit fee61c7

Please sign in to comment.