Fix wildcard for Eagle XML files.

This commit is contained in:
Baranovskiy Konstantin 2017-11-12 14:11:50 +02:00 committed by Wayne Stambaugh
parent 620251de69
commit a4b962e7d9
1 changed files with 2 additions and 1 deletions

View File

@ -139,7 +139,8 @@ wxString EagleSchematicFileWildcard()
wxString EagleFilesWildcard() wxString EagleFilesWildcard()
{ {
return _( "Eagle XML files (*.sch *.brd)|*.sch;*." ) + FormatWildcardExt( "brd" ); return _( "Eagle XML files (*.sch *.brd)|*." ) +
FormatWildcardExt( "sch" ) + ";*." + FormatWildcardExt( "brd" );
} }