Fixed freeze after adding a module

This commit is contained in:
Maciej Suminski 2016-08-16 16:56:20 +02:00
parent 303a6928ab
commit 91ea4242ca
1 changed files with 5 additions and 1 deletions

View File

@ -250,7 +250,7 @@ int PCB_EDITOR_CONTROL::PlaceModule( const TOOL_EVENT& aEvent )
{ {
if( module ) if( module )
{ {
board->Delete( module ); // it was added by LoadModuleFromLibrary() delete module;
module = NULL; module = NULL;
preview.Clear(); preview.Clear();
@ -285,9 +285,13 @@ int PCB_EDITOR_CONTROL::PlaceModule( const TOOL_EVENT& aEvent )
module = m_frame->LoadModuleFromLibrary( wxEmptyString, module = m_frame->LoadModuleFromLibrary( wxEmptyString,
m_frame->Prj().PcbFootprintLibs(), m_frame->Prj().PcbFootprintLibs(),
true, NULL ); true, NULL );
if( module == NULL ) if( module == NULL )
continue; continue;
// Module has been added in LoadModuleFromLibrary(),
// so we have to remove it before committing the change @todo LEGACY
board->Remove( module );
module->SetPosition( wxPoint( cursorPos.x, cursorPos.y ) ); module->SetPosition( wxPoint( cursorPos.x, cursorPos.y ) );
// Add all the drawable parts to preview // Add all the drawable parts to preview