Select both ends of wires in block select.

Fixes: lp:1830717
* https://bugs.launchpad.net/kicad/+bug/1830717
This commit is contained in:
Jeff Young 2019-06-18 20:22:29 +01:00
parent 0f0323da5a
commit b0c1c1ad2b
1 changed files with 3 additions and 0 deletions

View File

@ -717,7 +717,10 @@ bool EE_SELECTION_TOOL::selectMultiple()
if( m_subtractive )
unselect( item );
else
{
select( item );
item->SetFlags( STARTPOINT | ENDPOINT );
}
}
}