summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/objects.js b/objects.js
index 67eb143..e8a934e 100644
--- a/objects.js
+++ b/objects.js
@@ -5263,7 +5263,10 @@ Costume.prototype.edit = function (aWorld, anIDE, isnew, oncancel, onsubmit) {
function (img, rc) {
myself.contents = img;
myself.rotationCenter = rc;
- myself.shrinkWrap();
+ if (anIDE.currentSprite instanceof SpriteMorph) {
+ // don't shrinkwrap stage costumes
+ myself.shrinkWrap();
+ }
myself.version = Date.now();
aWorld.changed();
if (anIDE) {