Commit 79015495 authored by Dick Hollenbeck's avatar Dick Hollenbeck
Browse files

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
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -503,6 +503,11 @@ void LIB_VIEW_FRAME::DClickOnCmpList( wxCommandEvent& event )
    if( m_Semaphore )
    {
        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();
    }
}