summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorGubolin <gubolin@fantasymail.de>2015-02-22 15:32:35 +0100
committerGubolin <gubolin@fantasymail.de>2015-02-22 15:32:35 +0100
commit253c841a79c101db982731c9e56f953a8120ffc3 (patch)
tree5490ba7790fad63f536b2ad09cfcb45f09fc51fc /objects.js
parente8c854f84aef6d160cfacb4b6a7a5723716cb72e (diff)
parent662a743f4ed564f2c296e2370c555ca44e12116d (diff)
downloadsnap-253c841a79c101db982731c9e56f953a8120ffc3.tar.gz
snap-253c841a79c101db982731c9e56f953a8120ffc3.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 cb9ad4b..5ad18e7 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;
@@ -2842,7 +2842,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);
}