[KiCad 8] Added support for FP_SHAPE -> PCB_SHAPE

- Really?
This commit is contained in:
Salvador E. Tropea 2023-04-05 11:01:19 -03:00
parent fdc8019ec5
commit a09d62099e
1 changed files with 2 additions and 0 deletions

View File

@ -599,6 +599,8 @@ class GS(object):
@staticmethod
def create_module_element(m):
if GS.ki8:
return pcbnew.PCB_SHAPE(m)
if GS.ki6:
return pcbnew.FP_SHAPE(m)
return pcbnew.EDGE_MODULE(m)