diff --git a/config/changelog.yaml b/config/changelog.yaml index 247af167e8c..9ee613a6d27 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -26,6 +26,8 @@ Unreleased: - Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4. Fixed: + brian: + - Take biceps ease into account when calculating armhole depth carlton: - Fixed a stray seam allowance path on the collar charlie: diff --git a/designs/brian/src/base.mjs b/designs/brian/src/base.mjs index 1fe0e1d7cd1..3e64ad3f6be 100644 --- a/designs/brian/src/base.mjs +++ b/designs/brian/src/base.mjs @@ -109,7 +109,8 @@ export const base = { // The new way uses the waistToArmpit measurement points.cbArmhole = new Point( 0, - points.cbWaist.y - measurements.waistToArmpit * (1 - options.armholeDepth) + points.cbWaist.y - + measurements.waistToArmpit * (1 - options.armholeDepth - options.bicepsEase / 2) ) }