Changed grid color

This commit is contained in:
Nathan Kunicki 2017-11-17 23:56:48 +00:00
parent 6f0ac057be
commit d9a8d1a1f8

View File

@ -161,10 +161,9 @@ class BittMappEditor {
_drawGrid () { _drawGrid () {
this._context.fillStyle = "#FFFFFF"; this._context.fillStyle = "#FFFFFF";
this._context.strokeStyle = "#FF0000"; this._context.strokeStyle = "#CCCCCC";
this._context.fillRect(0, 0, this.canvasWidth, this.canvasHeight); this._context.fillRect(0, 0, this.canvasWidth, this.canvasHeight);
this._context.strokeStyle = "#FF0000";
this._context.beginPath(); this._context.beginPath();
this._context.moveTo(0, 0); this._context.moveTo(0, 0);
this._context.lineTo(this.canvasWidth, 0); this._context.lineTo(this.canvasWidth, 0);