Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
ea04a4af
Commit
ea04a4af
authored
May 27, 2013
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eeschema: netlist dialog: fix a very minor issue.
parent
b7504145
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
dialog_netlist.cpp
eeschema/dialogs/dialog_netlist.cpp
+8
-4
No files found.
eeschema/dialogs/dialog_netlist.cpp
View file @
ea04a4af
...
...
@@ -475,18 +475,22 @@ void NETLIST_DIALOG::GenNetlist( wxCommandEvent& event )
}
fn
.
SetExt
(
fileExt
);
wxString
fullfilname
=
fn
.
GetFullName
();
if
(
fn
.
GetPath
().
IsEmpty
()
)
fn
.
SetPath
(
wxGetCwd
()
);
wxString
fullfilename
=
fn
.
GetFullPath
();
if
(
!
GetUseDefaultNetlistName
()
||
currPage
->
m_IdNetType
>=
NET_TYPE_CUSTOM1
)
{
wxFileDialog
dlg
(
this
,
title
,
fn
.
GetPath
(),
fullfilname
,
fileWildcard
,
fullfil
e
name
,
fileWildcard
,
wxFD_SAVE
);
if
(
dlg
.
ShowModal
()
==
wxID_CANCEL
)
return
;
fullfilname
=
dlg
.
GetPath
();
fullfil
e
name
=
dlg
.
GetPath
();
}
m_Parent
->
ClearMsgPanel
();
...
...
@@ -496,7 +500,7 @@ void NETLIST_DIALOG::GenNetlist( wxCommandEvent& event )
else
m_Parent
->
SetNetListerCommand
(
wxEmptyString
);
m_Parent
->
CreateNetlist
(
currPage
->
m_IdNetType
,
fullfilname
,
netlist_opt
);
m_Parent
->
CreateNetlist
(
currPage
->
m_IdNetType
,
fullfil
e
name
,
netlist_opt
);
WriteCurrentNetlistSetup
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment