diff --git a/web/app/canvas.js b/web/app/canvas.js index 0f77aac1..8f15f0a0 100644 --- a/web/app/canvas.js +++ b/web/app/canvas.js @@ -622,7 +622,9 @@ TCAD.TWO.DragTool.prototype.mousemove = function(e) { var checkX = this.ref.x; var checkY = this.ref.y; this.obj.translate(dx, dy); - this.solveRequest(2); + if (!e.shiftKey) { + this.solveRequest(2); + } this.errorX = (this.ref.x - dx) - checkX; this.errorY = (this.ref.y - dy) - checkY;