summaryrefslogtreecommitdiff
path: root/morphic.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-07-29 13:09:18 +0200
committerjmoenig <jens@moenig.org>2014-07-29 13:09:18 +0200
commit0cc14e2861367ca08acd89d01ff21332d6cc56ed (patch)
tree9e005e1f622162ea8ee01514786cc43c3ef88734 /morphic.js
parent1205d7a2b021d21d5fa964fc548567c2cd571a46 (diff)
downloadsnap-byow-0cc14e2861367ca08acd89d01ff21332d6cc56ed.tar.gz
snap-byow-0cc14e2861367ca08acd89d01ff21332d6cc56ed.zip
fixed #497 (prevent bubble shadows from getting cut-off)
thanks @Hardmath123 for this bug report
Diffstat (limited to 'morphic.js')
-rw-r--r--morphic.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphic.js b/morphic.js
index 39b8741..2bbdd4e 100644
--- a/morphic.js
+++ b/morphic.js
@@ -1035,7 +1035,7 @@
/*global window, HTMLCanvasElement, getMinimumFontHeight, FileReader, Audio,
FileList, getBlurredShadowSupport*/
-var morphicVersion = '2014-July-11';
+var morphicVersion = '2014-July-29';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
@@ -5120,7 +5120,7 @@ SpeechBubbleMorph.prototype.popUp = function (world, pos, isClickable) {
this.addShadow(new Point(2, 2), 80);
this.keepWithin(world);
world.add(this);
- this.changed();
+ this.fullChanged();
world.hand.destroyTemporaries();
world.hand.temporaries.push(this);