Allow 5.0 to read 6.0 files with hole-to-hole clearance settings.
This commit is contained in:
parent
a1a4275e8b
commit
0a4c04530a
|
@ -93,6 +93,7 @@ gr_poly
|
|||
gr_text
|
||||
hatch
|
||||
hide
|
||||
hole_to_hole_min
|
||||
italic
|
||||
justify
|
||||
keepout
|
||||
|
|
|
@ -1191,8 +1191,14 @@ void PCB_PARSER::parseSetup()
|
|||
}
|
||||
break;
|
||||
|
||||
case T_hole_to_hole_min:
|
||||
// Not implemented yet...
|
||||
parseBoardUnits( T_hole_to_hole_min );
|
||||
NeedRIGHT();
|
||||
break;
|
||||
|
||||
case T_pad_to_mask_clearance:
|
||||
designSettings.m_SolderMaskMargin = parseBoardUnits( T_pad_to_mask_clearance );
|
||||
designSettings.m_SolderMaskMargin = parseBoardUnits( T_pad_to_mask_clearance );
|
||||
NeedRIGHT();
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue