Use drag origin instead of current mouse pos for drag checking.

This commit is contained in:
Jeff Young 2022-11-19 21:01:45 +00:00
parent 79e9e6b01e
commit b84066610e
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ int EE_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent )
}
// Check if dragging has started within any of selected items bounding box
if( selectionContains( evt->Position() ) )
if( selectionContains( evt->DragOrigin() ) )
{
// Yes -> run the move tool and wait till it finishes
if( m_isSymbolEditor )