Python footprint generators: fix a typo and fix text size (accordance KLC 6.9)
This commit is contained in:
parent
7313b28e2a
commit
aa6beaaba0
|
@ -248,7 +248,7 @@ class HelpfulFootprintWizardPlugin(pcbnew.FootprintWizardPlugin,
|
|||
def GetValue(self):
|
||||
raise NotImplementedError
|
||||
|
||||
# this value come from our KiCad Library Convention 0.11
|
||||
# this value come from our KiCad Library Convention 1.0
|
||||
def GetReferencePrefix(self):
|
||||
return "REF"
|
||||
|
||||
|
@ -259,7 +259,7 @@ class HelpfulFootprintWizardPlugin(pcbnew.FootprintWizardPlugin,
|
|||
"""
|
||||
IPC nominal
|
||||
"""
|
||||
return pcbnew.FromMM(1.2)
|
||||
return pcbnew.FromMM(1.0)
|
||||
|
||||
def GetTextThickness(self):
|
||||
"""
|
||||
|
|
|
@ -37,7 +37,7 @@ class RowedGridArray(PA.PadGridArray):
|
|||
|
||||
class RowedFootprint(HFPW.HelpfulFootprintWizardPlugin):
|
||||
|
||||
pad_count_key = 'pas count'
|
||||
pad_count_key = 'pad count'
|
||||
row_count_key = 'row count'
|
||||
row_spacing_key = 'row spacing'
|
||||
pad_length_key = 'pad length'
|
||||
|
|
Loading…
Reference in New Issue