Allow fp text to be group selected in HC mode

Fixes https://gitlab.com/kicad/code/kicad/issues/2259
This commit is contained in:
Michael Kavanagh 2020-04-19 20:24:49 +01:00 committed by Jon Evans
parent 366673d995
commit 8418ac34bc
1 changed files with 1 additions and 3 deletions

View File

@ -1609,7 +1609,7 @@ bool SELECTION_TOOL::Selectable( const BOARD_ITEM* aItem, bool checkVisibilityOn
// pick up items under an (unlocked) module without also moving the module's sub-parts.
if( !m_editModules && !checkVisibilityOnly )
{
if( m_multiple )
if( m_multiple && !highContrast )
return false;
}
@ -2313,5 +2313,3 @@ void SELECTION_TOOL::setTransitions()
Go( &SELECTION_TOOL::selectSheetContents, PCB_ACTIONS::selectOnSheetFromEeschema.MakeEvent() );
Go( &SELECTION_TOOL::updateSelection, EVENTS::SelectedItemsModified );
}