Commit ce94880a authored by Wayne Stambaugh's avatar Wayne Stambaugh

Pcbnew: fix bug reading legacy board format. (fixes lp:1195368)

parent b66d6e2d
......@@ -1002,7 +1002,7 @@ void LEGACY_PLUGIN::LoadMODULE( MODULE* aModule )
{
// There can be whitespace in the footprint name on some old libraries.
// Grab everything after "Li" up to end of line:
// aModule->SetLibRef( FROM_UTF8( StrPurge( line + SZ( "Li" ) ) ) );
aModule->SetLibRef( FROM_UTF8( StrPurge( line + SZ( "Li" ) ) ) );
}
else if( TESTLINE( "Sc" ) ) // timestamp
......
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