pull/3/merge
jmoenig 2015-01-28 07:23:21 +01:00
rodzic 2ca378c50b
commit 273c58440c
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -2426,3 +2426,7 @@ ______
* GUI: Fix Zoom Dialogs sample background in “flat” design * GUI: Fix Zoom Dialogs sample background in “flat” design
* Updated Korean and Catalan translations, thanks, Yunjae Jang and Bernat Romagosa! * Updated Korean and Catalan translations, thanks, Yunjae Jang and Bernat Romagosa!
* Objects: Fix speech bubbles of dragged nested sprites * Objects: Fix speech bubbles of dragged nested sprites
150128
------
* Objects: Fixed #710

Wyświetl plik

@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/
// Global stuff //////////////////////////////////////////////////////// // Global stuff ////////////////////////////////////////////////////////
modules.objects = '2015-January-21'; modules.objects = '2015-January-28';
var SpriteMorph; var SpriteMorph;
var StageMorph; var StageMorph;
@ -2758,7 +2758,7 @@ SpriteMorph.prototype.setColor = function (aColor) {
var x = this.xPosition(), var x = this.xPosition(),
y = this.yPosition(); y = this.yPosition();
if (!this.color.eq(aColor)) { if (!this.color.eq(aColor)) {
this.color = aColor; this.color = aColor.copy();
this.drawNew(); this.drawNew();
this.gotoXY(x, y); this.gotoXY(x, y);
} }