Fixed: enabled the vias plotting in pcb_print

- Disabled by 43c5f4f
This commit is contained in:
Salvador E. Tropea 2022-06-10 07:43:27 -03:00
parent ef98248b32
commit 38b1202e86
2 changed files with 1 additions and 1 deletions

View File

@ -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,

View File

@ -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)