Merge lp:~xzcvczx/kicad/save-prefs into lp:kicad/product

Proposed by xzcvczx
Status: Merged
Merged at revision: 6260
Proposed branch: lp:~xzcvczx/kicad/save-prefs
Merge into: lp:kicad/product
Diff against target: 12 lines (+1/-1)
1 file modified
eeschema/eeschema_config.cpp (+1/-1)
To merge this branch: bzr merge lp:~xzcvczx/kicad/save-prefs
Reviewer Review Type Date Requested Status
Wayne Stambaugh Approve
Review via email: mp+273952@code.launchpad.net

Description of the change

the pcbnew save preferences dialog uses just the filename instead of the full path, this is correct behaviour as its a file dialog so the path can be set that way, This changes eeschema save preferences to match this behaviour

To post a comment you must log in.
Revision history for this message
Wayne Stambaugh (stambaughw) wrote :

Your merge request was committed in the product branch r6260. Thanks.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'eeschema/eeschema_config.cpp'
2--- eeschema/eeschema_config.cpp 2015-08-31 06:43:33 +0000
3+++ eeschema/eeschema_config.cpp 2015-10-09 07:46:38 +0000
4@@ -491,7 +491,7 @@
5 if( aAskForSave )
6 {
7 wxFileDialog dlg( this, _( "Save Project File" ),
8- fn.GetPath(), fn.GetFullPath(),
9+ fn.GetPath(), fn.GetFullName(),
10 ProjectFileWildcard, wxFD_SAVE );
11
12 if( dlg.ShowModal() == wxID_CANCEL )