diff --git a/HISTORY.md b/HISTORY.md index 00ea57ce..21aa0214 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -25,6 +25,7 @@ ### 2021-07-12 * Chinese translation update, thanks, Simon! +* objects: fixed refactored "Delete a variable" button for stage palette ### 2021-07-11 * added libraries and media to cache, thanks, Joan! diff --git a/snap.html b/snap.html index 75e555e6..bcc3459a 100755 --- a/snap.html +++ b/snap.html @@ -18,7 +18,7 @@ - + diff --git a/src/objects.js b/src/objects.js index c4034183..2cbcca41 100644 --- a/src/objects.js +++ b/src/objects.js @@ -86,7 +86,7 @@ AlignmentMorph, Process, WorldMap, copyCanvas, useBlurredShadows*/ /*jshint esversion: 6*/ -modules.objects = '2021-July-09'; +modules.objects = '2021-July-12'; var SpriteMorph; var StageMorph; @@ -9524,6 +9524,10 @@ StageMorph.prototype.inheritedVariableNames = function () { return []; }; +StageMorph.prototype.deletableVariableNames = function () { + return this.variables.allNames(); +}; + StageMorph.prototype.allLocalVariableNames = SpriteMorph.prototype.allLocalVariableNames;