Not solve if either ctrl or alt pressed

This commit is contained in:
Val Erastov 2015-08-12 18:52:38 -07:00
parent 0a20bca450
commit 4536f948f4

View file

@ -842,7 +842,7 @@ TCAD.TWO.DragTool.prototype.mousemove = function(e) {
var checkX = this.ref.x;
var checkY = this.ref.y;
this.obj.translate(dx, dy);
if (!e.shiftKey) {
if (!e.altKey && !e.ctrlKey) {
this.solveRequest(true);
}