Commit d8954ca3 authored by Andrey Fedorushkov's avatar Andrey Fedorushkov

eeschema: fix parts range 1 to 26 in component

parent 18616d77
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment