Footprint editor: use most recently used path on footprint import.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/10418
This commit is contained in:
parent
5b0527bdfe
commit
c154e85ebd
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -101,7 +101,7 @@ static wxFileName getFootprintFilenameFromUser( wxWindow* aParent, const wxStrin
|
||||||
* Read a file to detect the type.
|
* Read a file to detect the type.
|
||||||
* @param aFile - open file to be read. File pointer will be closed.
|
* @param aFile - open file to be read. File pointer will be closed.
|
||||||
* @param aFileName - file name to be read
|
* @param aFileName - file name to be read
|
||||||
* @param aName - wxString to receive the footprint name iff type is LEGACY
|
* @param aName - wxString to receive the footprint name if type is LEGACY
|
||||||
*/
|
*/
|
||||||
static IO_MGR::PCB_FILE_T detect_file_type( FILE* aFile, const wxFileName& aFileName,
|
static IO_MGR::PCB_FILE_T detect_file_type( FILE* aFile, const wxFileName& aFileName,
|
||||||
wxString* aName )
|
wxString* aName )
|
||||||
|
@ -257,7 +257,7 @@ FOOTPRINT* FOOTPRINT_EDIT_FRAME::ImportFootprint( const wxString& aName )
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg->m_LastImportExportPath = lastOpenedPathForLoading;
|
m_mruPath = cfg->m_LastImportExportPath = fn.GetPath();
|
||||||
|
|
||||||
wxString footprintName;
|
wxString footprintName;
|
||||||
IO_MGR::PCB_FILE_T fileType = detect_file_type( fp, fn.GetFullPath(), &footprintName );
|
IO_MGR::PCB_FILE_T fileType = detect_file_type( fp, fn.GetFullPath(), &footprintName );
|
||||||
|
|
Loading…
Reference in New Issue