summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2015-01-28 07:23:21 +0100
committerjmoenig <jens@moenig.org>2015-01-28 07:23:24 +0100
commit273c58440cf86ed9679904a04a8442335228755c (patch)
treec79a48e16c55e9e8480816915c4b397755486c1d /objects.js
parent2ca378c50bf67b6af5e16ba72af81f4f84db308c (diff)
downloadsnap-yow-273c58440cf86ed9679904a04a8442335228755c.tar.gz
snap-yow-273c58440cf86ed9679904a04a8442335228755c.zip
Fixed #710
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/objects.js b/objects.js
index 981fb20..b433a83 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);
}