oh well ...

This commit is contained in:
juliandescottes 2012-09-06 00:40:27 +02:00
parent 5a36f8a3a8
commit 9a09f11650

View File

@ -57,7 +57,7 @@
// eg deleting the equivalent of a stroke. // eg deleting the equivalent of a stroke.
color = Constants.SELECTION_TRANSPARENT_COLOR; color = Constants.SELECTION_TRANSPARENT_COLOR;
} }
drawer.updateOverlay(strokePoints[i].col, strokePoints[i].row, color); drawer.overlay.setPixel(strokePoints[i].col, strokePoints[i].row, color);
} }
drawer.renderOverlay(); drawer.renderOverlay();
}; };
@ -74,7 +74,7 @@
var strokePoints = this.getLinePixels_(this.startCol, col, this.startRow, row); var strokePoints = this.getLinePixels_(this.startCol, col, this.startRow, row);
for(var i = 0; i< strokePoints.length; i++) { for(var i = 0; i< strokePoints.length; i++) {
// Change model: // Change model:
drawer.updateFrame(strokePoints[i].col, strokePoints[i].row, color); drawer.frame.setPixel(strokePoints[i].col, strokePoints[i].row, color);
} }
// Draw in canvas: // Draw in canvas:
// TODO: Remove that when we have the centralized redraw loop // TODO: Remove that when we have the centralized redraw loop