diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cacaf7a..cfbfaa7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - GenCAD output targets. - Problems expanding multiple KiCad variables in the same value. - XML BoM: Fixed problems with fields containing / (#206) +- pcb_print: vias processing was disabled. ### Changed - KiCad environment variables: more variables detected, native KiCad 6 names, diff --git a/kibot/out_pcb_print.py b/kibot/out_pcb_print.py index 39750212..7887fc39 100644 --- a/kibot/out_pcb_print.py +++ b/kibot/out_pcb_print.py @@ -757,7 +757,6 @@ class PCB_PrintOptions(VariantOptions): if id >= F_Cu and id <= B_Cu: if self.colored_pads: self.plot_pads(la, pc, p, filelist) - return if self.colored_vias: self.plot_vias(la, pc, p, filelist, VIATYPE_THROUGH, self.via_color) self.plot_vias(la, pc, p, filelist, VIATYPE_BLIND_BURIED, self.blind_via_color)