Prevent the double click from being as a single click in the parent

window which would cause the part to be parked rather than staying
in drag mode.
This commit is contained in:
Dick Hollenbeck 2012-12-04 13:09:53 -06:00
parent 85e96c92ed
commit 148d567aa4
1 changed files with 6 additions and 1 deletions

View File

@ -502,7 +502,12 @@ void LIB_VIEW_FRAME::DClickOnCmpList( wxCommandEvent& event )
{
if( m_Semaphore )
{
ExportToSchematicLibraryPart ( event );
ExportToSchematicLibraryPart( event );
// Prevent the double click from being as a single click in the parent
// window which would cause the part to be parked rather than staying
// in drag mode.
event.StopPropagation();
}
}