PCB: Immediate mode copy should deselect if hover selecting

This commit is contained in:
Mike Williams 2023-01-19 09:44:23 -05:00
parent 774f3f9794
commit b8352b07c5
1 changed files with 3 additions and 0 deletions

View File

@ -2541,6 +2541,9 @@ int EDIT_TOOL::copyToClipboard( const TOOL_EVENT& aEvent )
frame()->PopTool( selectReferencePoint );
if( selection.IsHover() )
m_selectionTool->ClearSelection();
return 0;
}