Allow placing vias on tracks covered by areas of the same net

This commit is contained in:
Hannes Ellinger
2024-06-19 12:11:56 +02:00
parent c9039bc737
commit 1bf5a22925
4 changed files with 142 additions and 0 deletions

View File

@ -83,6 +83,7 @@ class FillAreaAction(pcbnew.ActionPlugin):
fill.SetRandom(a.m_Random.IsChecked())
fill.SetViaThroughAreas(a.m_viaThroughAreas.IsChecked())
fill.SetType(a.m_cbFillType.GetStringSelection())
fill.SetSameNetTracks(a.m_sameNetTracks.IsChecked())
if a.m_only_selected.IsChecked():
fill.OnlyOnSelectedArea()
fill.Run()