summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2015-04-15 17:30:43 +0200
committerJens Mönig <jens@moenig.org>2015-04-15 17:30:43 +0200
commit834b3918adc35792eae7d6cf59a17f48f0d88cb9 (patch)
tree151ab6c4637c774374a61d7214036a91a769cd0f
parentdb01489a49631ffed9a3d2acefa8581ded8752ad (diff)
downloadsnap-834b3918adc35792eae7d6cf59a17f48f0d88cb9.tar.gz
snap-834b3918adc35792eae7d6cf59a17f48f0d88cb9.zip
fixed #770
-rwxr-xr-xhistory.txt1
-rw-r--r--objects.js6
2 files changed, 4 insertions, 3 deletions
diff --git a/history.txt b/history.txt
index 9cdc5c9..0efef9b 100755
--- a/history.txt
+++ b/history.txt
@@ -2484,3 +2484,4 @@ ______
150415
------
* Threads: flush Stage>>keysPressed when prompting the user
+* Objects: fixed #770
diff --git a/objects.js b/objects.js
index 1fe1309..db5ab88 100644
--- a/objects.js
+++ b/objects.js
@@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.objects = '2015-February-28';
+modules.objects = '2015-April-15';
var SpriteMorph;
var StageMorph;
@@ -3081,7 +3081,7 @@ SpriteMorph.prototype.setEffect = function (effect, value) {
if (eff === 'ghost') {
this.alpha = 1 - Math.min(Math.max(+value || 0, 0), 100) / 100;
} else {
- this.graphicsValues[eff] = value;
+ this.graphicsValues[eff] = +value;
}
this.drawNew();
this.changed();
@@ -3096,7 +3096,7 @@ SpriteMorph.prototype.changeEffect = function (effect, value) {
if (eff === 'ghost') {
this.setEffect(effect, this.getGhostEffect() + (+value || 0));
} else {
- this.setEffect(effect, this.graphicsValues[eff] + value);
+ this.setEffect(effect, +this.graphicsValues[eff] + (+value));
}
};