fixed bug when resizing

This commit is contained in:
juliandescottes 2012-09-08 17:57:21 +02:00
parent 07369af9df
commit 869f3d2e00
2 changed files with 1 additions and 3 deletions

View File

@ -26,7 +26,7 @@
this.overlayRenderer.updateDPI(newDPI);
this.renderer.render(this.frame);
this.overlayRenderer.render(this.frame);
this.overlayRenderer.render(this.overlayFrame);
};
ns.DrawingController.prototype.renderFrame = function () {

View File

@ -12,8 +12,6 @@
// Stroke's first point coordinates (set in applyToolAt)
this.startCol = null;
this.startRow = null;
this.canvasOverlay = null;
};
pskl.utils.inherit(ns.Move, ns.BaseTool);