Allow save after importing footprint.

Fixes: lp:1819777
* https://bugs.launchpad.net/kicad/+bug/1819777
This commit is contained in:
Jeff Young 2019-03-12 23:07:47 +00:00
parent 95858b77c1
commit f054dcc77d
1 changed files with 2 additions and 2 deletions

View File

@ -551,7 +551,7 @@ void FOOTPRINT_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
case ID_MODEDIT_IMPORT_PART:
if( ! Clear_Pcb( true ) )
break; // //this command is aborted
break; // this command is aborted
SetCrossHairPosition( wxPoint( 0, 0 ) );
Import_Module();
@ -559,7 +559,7 @@ void FOOTPRINT_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
if( GetBoard()->m_Modules )
GetBoard()->m_Modules->ClearFlags();
GetScreen()->ClrModify();
GetScreen()->SetModify();
Zoom_Automatique( false );
m_canvas->Refresh();
Update3DView();