Fixed freeze after adding a module
This commit is contained in:
parent
303a6928ab
commit
91ea4242ca
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue