summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorGubolin <gubolin@fantasymail.de>2015-02-24 10:16:02 +0100
committerGubolin <gubolin@fantasymail.de>2015-02-24 10:16:02 +0100
commitf6e26faca52ba5a236066ef55f523ad7a0c8694b (patch)
tree154be7d8efec85183dc1ad1db0740b29c0e02f34 /objects.js
parentaf35f17f1a3e98be022d6303f898ebec523874ab (diff)
parent13eed946d223a5c46d8857c74fd41efd9052ba01 (diff)
downloadsnap-f6e26faca52ba5a236066ef55f523ad7a0c8694b.tar.gz
snap-f6e26faca52ba5a236066ef55f523ad7a0c8694b.zip
merge
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 cf4d0ea..077d3f7 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;
@@ -2915,7 +2915,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);
}