diff --git a/CHANGELOG.md b/CHANGELOG.md index a327783d412..7e2b60d6918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/packages/shin/config/index.js b/packages/shin/config/index.js index 526113d56b2..a139cc87750 100644 --- a/packages/shin/config/index.js +++ b/packages/shin/config/index.js @@ -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 } }