parent
ef98248b32
commit
38b1202e86
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue