diff --git a/HISTORY.md b/HISTORY.md index 4cbc644a..8349d774 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,7 @@ * added "pie chart" option to PLOT command in the frequency distribution analysis library * added getProjectXML() method to the API * new noCloud flag that disables cloud access, thanks, Bernat - * experimental (hidden) "extract" single command block context menu option + * new "extract" single command block context menu option * **Documentation Updates:** * API update * **Notable Fixes:** @@ -18,6 +18,7 @@ * blocks: fixed UNDO/REDO for "extracted" (single) command blocks * blocks: refactored userExtractJustThis * blocks: refactored userDestroyJustThis +* blocks: un-hid "extract" menu-option ### 2020-10-21 * gui: wait until all costumes have loaded before auto-triggering the green-flag event diff --git a/src/blocks.js b/src/blocks.js index beb19198..226fce4f 100644 --- a/src/blocks.js +++ b/src/blocks.js @@ -3023,15 +3023,11 @@ BlockMorph.prototype.userMenu = function () { }, 'only duplicate this block' ); - - if (shiftClicked) { - menu.addItem( - 'extract', - 'userExtractJustThis', - 'EXPERIMENTAL!\nonly grab this block', - new Color(100, 0, 0) - ); - } + menu.addItem( + 'extract', + 'userExtractJustThis', + 'only grab this block' + ); } menu.addItem( "delete",