Don't disambiguate if the user is dragging a multiple selection.

Fixes https://gitlab.com/kicad/code/kicad/issues/10108
This commit is contained in:
Jeff Young 2022-07-10 19:44:22 -06:00
parent 423b432c6c
commit b759d860c0
1 changed files with 2 additions and 1 deletions

View File

@ -770,7 +770,8 @@ int EE_SELECTION_TOOL::disambiguateCursor( const TOOL_EVENT& aEvent )
void EE_SELECTION_TOOL::onDisambiguationExpire( wxTimerEvent& aEvent )
{
m_toolMgr->ProcessEvent( EVENTS::DisambiguatePoint );
if( m_selection.GetSize() < 2 )
m_toolMgr->ProcessEvent( EVENTS::DisambiguatePoint );
}