diff --git a/HISTORY.md b/HISTORY.md index ea3f0980..a4330b96 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -26,7 +26,7 @@ * optimized in-project storage of atomic-data lists (more efficient, less space) * remove all clones when the Green Flag is clicked * adjust bottom of STOP block to reflect the menu selection (show / hide bottom notch) - * enable dropping commands into all rings, experimental, under construction + * enable dropping commands into all rings * Notable Fixes: * "relabel" blocks with translated drop-down choices * transforming arrayed to linked lists without loosing the last element @@ -45,6 +45,7 @@ * Morphic: simplified and optimized Node>>parentThatIsA / parentThatIsAnyOf * Blocks, Lists, Tables: refactored for optimized parent-by-type detection * Blocks: adjusted keyboard typing for command blocks inside reporter rings +* GUI, Blocks: enable dropping command blocks into all rings by default. Yeah! ### 2019-02-06 * Blocks, BYOB: refactored custom block input options and drop-down menus diff --git a/snap.html b/snap.html index 7fee31d2..15c8f029 100755 --- a/snap.html +++ b/snap.html @@ -9,7 +9,7 @@ - + diff --git a/src/blocks.js b/src/blocks.js index e3e610d3..6f128596 100644 --- a/src/blocks.js +++ b/src/blocks.js @@ -11617,7 +11617,7 @@ RingReporterSlotMorph.prototype.rfBorder RingReporterSlotMorph.prototype.edge = RingCommandSlotMorph.prototype.edge; -RingReporterSlotMorph.prototype.enableCommandDrops = false; // +++ not finished +RingReporterSlotMorph.prototype.enableCommandDrops = true; // RingReporterSlotMorph instance creation: diff --git a/src/gui.js b/src/gui.js index 062ca16e..3e9ea7f5 100644 --- a/src/gui.js +++ b/src/gui.js @@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2019-February-06'; +modules.gui = '2019-February-07'; // Declarations @@ -3148,9 +3148,8 @@ IDE_Morph.prototype.settingsMenu = function () { !RingReporterSlotMorph.prototype.enableCommandDrops; }, RingReporterSlotMorph.prototype.enableCommandDrops, - 'UNDER CONSTRUCTION!\nuncheck to disable\ndropping commands in ' + - 'reporter rings', - 'UNDER CONSTRUCTION!\ncheck to enable\ndropping commands in all rings', + 'uncheck to disable\ndropping commands in reporter rings', + 'check to enable\ndropping commands in all rings', true ); menu.popup(world, pos);