From 273c58440cf86ed9679904a04a8442335228755c Mon Sep 17 00:00:00 2001 From: jmoenig Date: Wed, 28 Jan 2015 07:23:21 +0100 Subject: [PATCH] Fixed #710 --- history.txt | 4 ++++ objects.js | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index deb76a6f..ca2d24cb 100755 --- a/history.txt +++ b/history.txt @@ -2426,3 +2426,7 @@ ______ * GUI: Fix Zoom Dialog’s sample background in “flat” design * Updated Korean and Catalan translations, thanks, Yunjae Jang and Bernat Romagosa! * Objects: Fix speech bubbles of dragged nested sprites + +150128 +------ +* Objects: Fixed #710 diff --git a/objects.js b/objects.js index 981fb20e..b433a83c 100644 --- a/objects.js +++ b/objects.js @@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2015-January-21'; +modules.objects = '2015-January-28'; var SpriteMorph; var StageMorph; @@ -2758,7 +2758,7 @@ SpriteMorph.prototype.setColor = function (aColor) { var x = this.xPosition(), y = this.yPosition(); if (!this.color.eq(aColor)) { - this.color = aColor; + this.color = aColor.copy(); this.drawNew(); this.gotoXY(x, y); }