Python footprint generators: fix a typo and fix text size (accordance KLC 6.9)

This commit is contained in:
unknown 2016-02-14 10:47:07 +01:00 committed by jean-pierre charras
parent 7313b28e2a
commit aa6beaaba0
2 changed files with 4 additions and 4 deletions

View File

@ -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):
"""

View File

@ -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'