diff options
| -rw-r--r-- | morphic.js | 1 | ||||
| -rw-r--r-- | objects.js | 4 |
2 files changed, 1 insertions, 4 deletions
@@ -4097,7 +4097,6 @@ PenMorph.prototype.forward = function (steps) { PenMorph.prototype.down = function () { this.isDown = true; - this.drawLine(this.center(), this.center()); }; PenMorph.prototype.up = function () { @@ -3248,9 +3248,7 @@ Morph.prototype.setPosition = function (aPoint, justMe) { // override the inherited default to make sure my parts follow // unless it's justMe var delta = aPoint.subtract(this.topLeft()); - if ((delta.x !== 0) || (delta.y !== 0)) { - this.moveBy(delta, justMe); - } + this.moveBy(delta, justMe); }; SpriteMorph.prototype.forward = function (steps) { |
