Browse Source

Allow fp text to be group selected in HC mode

Fixes https://gitlab.com/kicad/code/kicad/issues/2259
pull/16/head
Michael Kavanagh 6 years ago
committed by Jon Evans
parent
commit
8418ac34bc
  1. 4
      pcbnew/tools/selection_tool.cpp

4
pcbnew/tools/selection_tool.cpp

@ -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 );
}
Loading…
Cancel
Save