From b864574e878d31eabc43b009f572db72a501b217 Mon Sep 17 00:00:00 2001 From: Benjamin Fan Date: Sun, 18 May 2025 13:34:06 +0000 Subject: [PATCH] fix(wahid): Add interfacing to front cutlist (#362) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wahid's cutting instructions and sewing instructions mention 2 front interfacing parts. So, it is a bug that the pattern is missing the “cut 2 from interfacing”. This issue was brought up on the Forum: https://forum.freesewing.eu/t/hello-thank-you-and-a-couple-of-suggestions-for-wahid/208 Co-authored-by: Benjamin Fan Reviewed-on: https://codeberg.org/freesewing/freesewing/pulls/362 Reviewed-by: Joost De Cock Co-authored-by: Benjamin Fan Co-committed-by: Benjamin Fan --- designs/wahid/src/front.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/designs/wahid/src/front.mjs b/designs/wahid/src/front.mjs index 8adff217f51..4f113a05264 100644 --- a/designs/wahid/src/front.mjs +++ b/designs/wahid/src/front.mjs @@ -343,6 +343,7 @@ function wahidFront({ */ // Cutlist store.cutlist.setCut({ cut: 2, from: 'fabric' }) + store.cutlist.addCut({ cut: 2, from: 'interfacing' }) // Buttons points.button1 = new Point(0, points.closureTop.y + 10)