Only load an empty project if we don't have one already
We may have multiple projects if one of them is a temporary project used for importing settings Fixes https://gitlab.com/kicad/code/kicad/-/issues/5423
This commit is contained in:
parent
c073749a5c
commit
046fef2cc1
|
@ -741,7 +741,8 @@ bool SETTINGS_MANAGER::UnloadProject( PROJECT* aProject, bool aSave )
|
|||
|
||||
// Immediately reload a null project; this is required until the rest of the application
|
||||
// is refactored to not assume that Prj() always works
|
||||
LoadProject( "" );
|
||||
if( m_projects.empty() )
|
||||
LoadProject( "" );
|
||||
|
||||
// Remove the reference in the environment to the previous project
|
||||
wxSetEnv( PROJECT_VAR_NAME, "" );
|
||||
|
|
Loading…
Reference in New Issue