kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #31576
Re: [PATCH] Fix wildcard for Eagle XML files.
-
To:
kicad-developers@xxxxxxxxxxxxxxxxxxx
-
From:
Wayne Stambaugh <stambaughw@xxxxxxxxx>
-
Date:
Sun, 12 Nov 2017 07:43:46 -0500
-
In-reply-to:
<CADfv2UVJnTei=ao1+TgNzEpHaS1y3fqu6h1jfhwFSGq_cvizCw@mail.gmail.com>
-
User-agent:
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0
Константин,
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