From 80005f2871288195b170c1542852f262280c5d9d Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 11 Sep 2020 12:50:14 -0300 Subject: [PATCH] Fixed: solder paste and adhesive glue should also removed for print --- kibot/out_pdf_pcb_print.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kibot/out_pdf_pcb_print.py b/kibot/out_pdf_pcb_print.py index f469e6ac..5d456249 100644 --- a/kibot/out_pdf_pcb_print.py +++ b/kibot/out_pdf_pcb_print.py @@ -32,12 +32,14 @@ class PDF_Pcb_PrintOptions(VariantOptions): return GS.pcb_file comps_hash = self.get_refs_hash() self.cross_modules(board, comps_hash) + self.remove_paste_and_glue(board, comps_hash) # Save the PCB to a temporal file with NamedTemporaryFile(mode='w', suffix='.kicad_pcb', delete=False) as f: fname = f.name logger.debug('Storing filtered PCB to `{}`'.format(fname)) GS.board.Save(fname) self.uncross_modules(board, comps_hash) + self.restore_paste_and_glue(board, comps_hash) return fname def run(self, output_dir, board, layers):