From 18716f4c0ffa880baf7e5bc02b620b8682a682ff Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 6 Jan 2016 11:21:32 -0800 Subject: [PATCH] Fix #1099, bug was introduced in #983 --- gui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.js b/gui.js index a7e621c8..f5150e30 100644 --- a/gui.js +++ b/gui.js @@ -6300,7 +6300,7 @@ CostumeIconMorph.prototype.exportCostume = function () { // don't show SVG costumes in a new tab (shows text) ide.saveFileAs(this.object.contents.src, 'text/svg', this.object.name); } else { // rasterized Costume - ide.saveCanvasAs(this.object.object.contents, this.object.name, true); + ide.saveCanvasAs(this.object.contents, this.object.name, true); } };