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:
parent
423b432c6c
commit
b759d860c0
|
@ -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 );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue