Thanks, Michael, for reporting this!
pull/3/merge
jmoenig 2014-09-22 15:32:36 +02:00
rodzic 5605df3dd5
commit 94c44902e1
2 zmienionych plików z 3 dodań i 2 usunięć

4
gui.js
Wyświetl plik

@ -69,7 +69,7 @@ SpeechBubbleMorph*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2014-July-30';
modules.gui = '2014-September-22';
// Declarations
@ -1859,7 +1859,7 @@ IDE_Morph.prototype.newSpriteName = function (name, ignoredSprite) {
stem = (ix < 0) ? name : name.substring(0, ix),
count = 1,
newName = stem,
all = this.sprites.asArray().filter(
all = this.sprites.asArray().concat(this.stage).filter(
function (each) {return each !== ignoredSprite; }
).map(
function (each) {return each.name; }

Wyświetl plik

@ -2274,3 +2274,4 @@ ______
140922
------
* Blocks: Make upvars mutable
* GUI: fixed #585 (sprite name conflict with stage). Thanks, Michael, for the report!