diff --git a/src/objects.js b/src/objects.js index 9fd5455e..48a77b8c 100644 --- a/src/objects.js +++ b/src/objects.js @@ -5674,7 +5674,9 @@ SpriteMorph.prototype.setRotationCenter = function (absoluteCoordinate) { ).divideBy(this.scale).rotateBy(radians(90 - this.heading)); normal = this.costume.rotationCenter.add(new Point(delta.x, -delta.y)); this.costume.rotationCenter = normal; - this.drawNew(); + this.changed(); + this.fixLayout(); + this.changed(); }; SpriteMorph.prototype.moveRotationCenter = function () {