From 7a03ea9f7b7e7cf417fb5dd892726b4783f4412a Mon Sep 17 00:00:00 2001 From: grimlokason Date: Tue, 7 Jan 2020 14:57:41 +0100 Subject: [PATCH] Update sleeve.js (#254) Correct typo of 2 of the FrenchCuff options cuffStyle as per : https://github.com/freesewing/freesewing/issues/253 --- packages/simon/src/sleeve.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/simon/src/sleeve.js b/packages/simon/src/sleeve.js index d811390f57e..7dc60df181f 100644 --- a/packages/simon/src/sleeve.js +++ b/packages/simon/src/sleeve.js @@ -25,8 +25,8 @@ export default part => { // Sleeve width depends on cuff style let width = measurements.wristCircumference * (1 + options.cuffEase + options.cuffOverlap) if ( - options.cuffStyle === 'straightFrenchcuff' || - options.cuffStyle === 'roundedFrenchcuff' || + options.cuffStyle === 'straightFrenchCuff' || + options.cuffStyle === 'roundedFrenchCuff' || options.cuffStyle === 'angledFrenchCuff' ) width = measurements.wristCircumference * (1 + options.cuffEase + options.cuffOverlap * 1.5)