summaryrefslogtreecommitdiff
path: root/morphic.js
diff options
context:
space:
mode:
Diffstat (limited to 'morphic.js')
-rw-r--r--morphic.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphic.js b/morphic.js
index f6e55e3..b3c9769 100644
--- a/morphic.js
+++ b/morphic.js
@@ -2735,7 +2735,7 @@ Morph.prototype.fullImage = function () {
this.allChildren().forEach(function (morph) {
if (morph.isVisible) {
ctx.globalAlpha = morph.alpha;
- if (morph.extent().gt(new Point())) {
+ if (morph.image.width && morph.image.height) {
ctx.drawImage(
morph.image,
morph.bounds.origin.x - fb.origin.x,