mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-18 19:59:18 +00:00
EAGLE import: allow more lines before <eagle> tag.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19528
This commit is contained in:
parent
7e68c57747
commit
603a500bc0
@ -2903,7 +2903,7 @@ bool SCH_IO_EAGLE::checkHeader( const wxString& aFileName ) const
|
||||
|
||||
wxTextInputStream text( input );
|
||||
|
||||
for( int i = 0; i < 4; i++ )
|
||||
for( int i = 0; i < 8; i++ )
|
||||
{
|
||||
if( input.Eof() )
|
||||
return false;
|
||||
|
@ -281,7 +281,7 @@ bool PCB_IO_EAGLE::checkHeader(const wxString& aFileName) const
|
||||
|
||||
wxTextInputStream text( input );
|
||||
|
||||
for( int i = 0; i < 4; i++ )
|
||||
for( int i = 0; i < 8; i++ )
|
||||
{
|
||||
if( input.Eof() )
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user