Fix wildcard for Eagle XML files.
This commit is contained in:
parent
620251de69
commit
a4b962e7d9
|
@ -139,7 +139,8 @@ wxString EagleSchematicFileWildcard()
|
|||
|
||||
wxString EagleFilesWildcard()
|
||||
{
|
||||
return _( "Eagle XML files (*.sch *.brd)|*.sch;*." ) + FormatWildcardExt( "brd" );
|
||||
return _( "Eagle XML files (*.sch *.brd)|*." ) +
|
||||
FormatWildcardExt( "sch" ) + ";*." + FormatWildcardExt( "brd" );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue