Rebuild project tree when unarchiving into project dir.

Fixes: lp:1749955
* https://bugs.launchpad.net/kicad/+bug/1749955
This commit is contained in:
Jeff Young 2018-02-16 14:20:14 +00:00 committed by Maciej Suminski
parent 67ccf769c7
commit e2f82118a2
1 changed files with 6 additions and 0 deletions

View File

@ -122,6 +122,12 @@ void KICAD_MANAGER_FRAME::OnUnarchiveFiles( wxCommandEvent& event )
}
PrintMsg( wxT( "** end **\n" ) );
if( unzipDir == Prj().GetProjectPath() )
{
wxCommandEvent dummy;
OnRefresh( dummy );
}
}