From 38218b198684dd6b309670d34257158951ce5530 Mon Sep 17 00:00:00 2001 From: Josh Munic Date: Sun, 4 May 2025 18:02:39 -0700 Subject: [PATCH] Fix Simon Cuffs cutting instructions Add "Cut 2 from interfacing" to the cutting instructions on the Simon shirt cuffs pattern. The cutting instructions in the documentation say to cut 2 from interfacing. --- designs/simon/src/shared.mjs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/designs/simon/src/shared.mjs b/designs/simon/src/shared.mjs index 3a1b5388f4b..e09f459b591 100644 --- a/designs/simon/src/shared.mjs +++ b/designs/simon/src/shared.mjs @@ -129,7 +129,10 @@ export const draftBarrelCuff = (part) => { export const decorateBarrelCuff = (part) => { const { macro, store, snippets, Snippet, points, measurements, options, Point } = part.shorthand() // Cutlist - store.cutlist.setCut({ cut: 4, from: 'fabric' }) + store.cutlist.setCut([ + { cut: 4, from: 'fabric' }, + { cut: 2, from: 'interfacing' }, + ]) // Title points.title = new Point(points.bottomRight.x / 2, points.bottomRight.y / 2) @@ -188,7 +191,10 @@ export const draftFrenchCuff = (part) => { export const decorateFrenchCuff = (part) => { const { macro, store, snippets, Snippet, points, measurements, options, Point } = part.shorthand() // Cutlist - store.cutlist.setCut({ cut: 4, from: 'fabric' }) + store.cutlist.setCut([ + { cut: 4, from: 'fabric' }, + { cut: 2, from: 'interfacing' }, + ]) // Title points.title = new Point(points.bottomRight.x / 2, points.bottomRight.y / 2)