Fix forgotten change in kicadplugins.i, after changing he class name PYTHON_FOOTPRINT_WIZARDS to PYTHON_FOOTPRINT_WIZARD_LIST
This bug prevent loading Python wizards.
This commit is contained in:
parent
c7bc154045
commit
b11b9b9d0d
|
@ -260,7 +260,7 @@ class KiCadPlugin:
|
|||
pass # register to file plugins in C++
|
||||
|
||||
if isinstance(self,FootprintWizardPlugin):
|
||||
PYTHON_FOOTPRINT_WIZARDS.register_wizard(self)
|
||||
PYTHON_FOOTPRINT_WIZARD_LIST.register_wizard(self)
|
||||
return
|
||||
|
||||
if isinstance(self,ActionPlugin):
|
||||
|
@ -274,7 +274,7 @@ class KiCadPlugin:
|
|||
pass # deregister to file plugins in C++
|
||||
|
||||
if isinstance(self,FootprintWizardPlugin):
|
||||
PYTHON_FOOTPRINT_WIZARDS.deregister_wizard(self)
|
||||
PYTHON_FOOTPRINT_WIZARD_LIST.deregister_wizard(self)
|
||||
return
|
||||
|
||||
if isinstance(self,ActionPlugin):
|
||||
|
|
Loading…
Reference in New Issue