Commit 79015495 authored by Dick Hollenbeck's avatar Dick Hollenbeck

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.
parent c9714604
...@@ -502,7 +502,12 @@ void LIB_VIEW_FRAME::DClickOnCmpList( wxCommandEvent& event ) ...@@ -502,7 +502,12 @@ void LIB_VIEW_FRAME::DClickOnCmpList( wxCommandEvent& event )
{ {
if( m_Semaphore ) 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();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment