mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-22 08:26:26 +01:00
fix moving solid edges while solving
This commit is contained in:
parent
311511820b
commit
4275c843a8
1 changed files with 1 additions and 1 deletions
|
|
@ -798,7 +798,7 @@ ParametricManager.prototype.prepareForSubSystem = function(locked, subSystemCons
|
|||
for (let p = 0; p < sdata[1].length; ++p) {
|
||||
const param = sdata[1][p];
|
||||
const solverParam = getSolverParam(param);
|
||||
solverParam.aux = auxDict[param.id] !== undefined;
|
||||
solverParam.aux = auxDict[solverParam._backingParam.id] !== undefined;
|
||||
params.push(solverParam);
|
||||
}
|
||||
if (reduceInfo.reducedConstraints[i] === true) continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue