1
0
Fork 0

Fix seam allowance slider to allow SA value changes when SA is set to zero but still enabled.

This commit is contained in:
Benjamin F 2022-08-03 12:00:48 -07:00
parent 3e7dddca82
commit 832838736c

View file

@ -14,7 +14,7 @@ const CoreSettingMm = props => {
const newVal = parseFloat(evt.target.value)
setValue(newVal)
if (props.gist.sa) props.setGist({
if (props.gist.saBool) props.setGist({
...props.gist,
saMm: newVal,
sa: newVal,