Closed sabogalc closed 8 months ago
The pcbnew plugin interface link was a 404, so I updated it to the current link.
More importantly, the code breaks on KiCad 8 with the below error.
To fix this, I just changed pad.GetParent().IsFlipped() to pad.IsFlipped() and this fixed the error.
pad.GetParent().IsFlipped()
pad.IsFlipped()
Does this still work on KiCAD 6..7?
Still works perfect on 7, I can install 6 on another machine to test that.
The pcbnew plugin interface link was a 404, so I updated it to the current link.
More importantly, the code breaks on KiCad 8 with the below error.
To fix this, I just changed
pad.GetParent().IsFlipped()
topad.IsFlipped()
and this fixed the error.