1
0
Fork 0

fix(uma): multiply toAbs() value of gusset slider by two as the part is mirrored

This commit is contained in:
Jonathan Haas 2024-07-03 19:57:08 +02:00
parent 9c5e6ad43f
commit e1c8217dc1
2 changed files with 4 additions and 1 deletions

View file

@ -33,8 +33,10 @@ Unreleased:
- Increased default lengthBonus from 5% to 15%. Fixes #6820 - Increased default lengthBonus from 5% to 15%. Fixes #6820
titan: titan:
- Adjust cross seam curves after fitting the waist. Fixes #6271 - Adjust cross seam curves after fitting the waist. Fixes #6271
uma:
- Fix absolute gusset width displayed below slider.
wahid: wahid:
- Add a warning when waist and hip reduction are both zero, so no back dart is required - Add a warning when waist and hip reduction are both zero, so no back dart is required.
Deprecated: Deprecated:
plugin-bust: plugin-bust:

View file

@ -525,6 +525,7 @@ export const base = {
toAbs: (val, { measurements }, mergedOptions) => toAbs: (val, { measurements }, mergedOptions) =>
measurements.waistToUpperLeg * measurements.waistToUpperLeg *
mergedOptions.gussetWidth * mergedOptions.gussetWidth *
2 *
stretchToScale(mergedOptions.xStretch), stretchToScale(mergedOptions.xStretch),
}, },