1
0
Fork 0

fix(shin): Remove unused lengthBonus option. Closes #752

This commit is contained in:
Joost De Cock 2020-12-26 13:23:34 +01:00
parent 29df8e2ceb
commit 2cc1be6933
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,12 @@
## Unreleased
### shin
#### Fixed
- Removed the unused `lengthBonus` options. Closes [#752](https://github.com/freesewing/freesewing/issues/752)
## 2.10.7 (2020-11-18)

View file

@ -11,7 +11,7 @@ export default {
tags: ['swimwear', 'bottom'],
optionGroups: {
fit: ['bulge', 'backRise', 'legReduction', 'stretch'],
style: ['lengthBonus', 'rise']
style: ['rise']
},
measurements: ['hips', 'upperLeg', 'waistToUpperLeg', 'waistToHips'],
parts: ['back', 'front', 'waistband'],
@ -29,7 +29,6 @@ export default {
stretch: { pct: 20, min: 10, max: 30 },
bulge: { pct: 2.5, min: 0, max: 5 },
legReduction: { pct: 5, min: 0, max: 10 },
lengthBonus: { pct: 0, min: 0, max: 50 },
rise: { pct: 0, min: 0, max: 25 },
backRise: { pct: 5, min: 0, max: 10 }
}