diff options
Diffstat (limited to 'byob.js')
| -rw-r--r-- | byob.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -912,7 +912,9 @@ JaggedBlockMorph.prototype.drawNew = function () { context.fillStyle = this.cachedClr; this.drawBackground(context); - this.drawEdges(context); + if (!MorphicPreferences.isFlat) { + this.drawEdges(context); + } // erase holes this.eraseHoles(context); |
