fix 'safe' moves during operation changes to be moves, not cuts
This commit is contained in:
parent
f4d7a37265
commit
ed11fbd82a
1 changed files with 3 additions and 3 deletions
|
|
@ -338,9 +338,9 @@ export function prepEach(widget, settings, print, firstPoint, update) {
|
|||
// 2. move to safe z of new point preserving old angle
|
||||
// 3. move to safe z of new point with new angle
|
||||
if (lop !== currentOp && lastPoint) {
|
||||
camOut(lastPoint.clone().setZ(zsafe).setA(lastPoint.a), 1);
|
||||
camOut(point.clone().setZ(zsafe).setA(lastPoint.a), 1);
|
||||
camOut(point.clone().setZ(zsafe), 1);
|
||||
camOut(lastPoint.clone().setZ(zsafe).setA(lastPoint.a), 0);
|
||||
camOut(point.clone().setZ(zsafe).setA(lastPoint.a), 0);
|
||||
camOut(point.clone().setZ(zsafe), 0);
|
||||
}
|
||||
|
||||
if (lop?.type === 'index' && lop !== currentOp ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue