mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 02:13:58 +01:00
Not solve if either ctrl or alt pressed
This commit is contained in:
parent
0a20bca450
commit
4536f948f4
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue