Browse Source

eeschema: fix parts range 1 to 26 in component

pull/1/head
Andrey Fedorushkov 12 years ago
parent
commit
d8954ca3cf
  1. 2
      eeschema/sch_component.cpp

2
eeschema/sch_component.cpp

@ -1229,7 +1229,7 @@ bool SCH_COMPONENT::Load( LINE_READER& aLine, wxString& aErrorMsg )
int multi = atoi( name1 );
if( multi < 0 || multi > 25 )
if( multi < 0 || multi > 26 )
multi = 1;
AddHierarchicalReference( path, ref, multi );

Loading…
Cancel
Save