From e1c8217dc19ddb6bf78d62be3d86189900120f9d Mon Sep 17 00:00:00 2001 From: Jonathan Haas Date: Wed, 3 Jul 2024 19:57:08 +0200 Subject: [PATCH] fix(uma): multiply toAbs() value of gusset slider by two as the part is mirrored --- config/changelog.yaml | 4 +++- designs/uma/src/base.mjs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/changelog.yaml b/config/changelog.yaml index 63909456aed..496b6ca6c22 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -33,8 +33,10 @@ Unreleased: - Increased default lengthBonus from 5% to 15%. Fixes #6820 titan: - Adjust cross seam curves after fitting the waist. Fixes #6271 + uma: + - Fix absolute gusset width displayed below slider. 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: plugin-bust: diff --git a/designs/uma/src/base.mjs b/designs/uma/src/base.mjs index 1b4f399c174..a1045491874 100644 --- a/designs/uma/src/base.mjs +++ b/designs/uma/src/base.mjs @@ -525,6 +525,7 @@ export const base = { toAbs: (val, { measurements }, mergedOptions) => measurements.waistToUpperLeg * mergedOptions.gussetWidth * + 2 * stretchToScale(mergedOptions.xStretch), },