diff --git a/CHANGELOG.md b/CHANGELOG.md index c25df94ecc2..caada1b9923 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ ### huey +#### Changed + + - The lengthBonus option default was changed from 0% to 15%. Fixes + #### Fixed - Fixed an issue where ribbing height would distort the pocket under certain conditions. Fixes diff --git a/config/changelog.yaml b/config/changelog.yaml index 68b97e0d2e1..ea16c38b722 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -6,6 +6,8 @@ Unreleased: Changed: brian: - Always load plugin-bust due to its changes in how it handle conditionality. + huey: + - The lengthBonus option default was changed from 0% to 15%. Fixes #6596 onyx: - Always load plugin-bust due to its changes in how it handle conditionality. plugin-bust: diff --git a/designs/huey/src/back.mjs b/designs/huey/src/back.mjs index f66548c08b8..999ce0287e7 100644 --- a/designs/huey/src/back.mjs +++ b/designs/huey/src/back.mjs @@ -101,6 +101,8 @@ export const back = { ribbing: { bool: true, menu: 'style' }, ribbingHeight: { pct: 10, min: 5, max: 15, menu: 'style' }, hipsEase: { pct: 8, min: 4, max: 12, menu: 'fit' }, + // Override Brian's lengthbonus. See #6596 + lengthBonus: { pct: 15, min: -4, max: 60, menu: 'style' }, }, draft: draftHueyBack, }