← Back to team overview

kicad-developers team mailing list archive

Re: [PATCH] Fix wildcard for Eagle XML files.

 

Константин,

I merged your patch into the development branch.  Thank you for your
contribution to KiCad.

Cheers,

Wayne

On 11/12/2017 07:20 AM, Константин Барановский wrote:
> --- a/common/wildcards_and_files_ext.cpp
> +++ b/common/wildcards_and_files_ext.cpp
> @@ -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" );
>  }
> 
> 
> 
> _______________________________________________
> Mailing list: https://launchpad.net/~kicad-developers
> Post to     : kicad-developers@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 


References