Allow fp text to be group selected in HC mode
Fixes https://gitlab.com/kicad/code/kicad/issues/2259
This commit is contained in:
parent
366673d995
commit
8418ac34bc
|
@ -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.
|
// pick up items under an (unlocked) module without also moving the module's sub-parts.
|
||||||
if( !m_editModules && !checkVisibilityOnly )
|
if( !m_editModules && !checkVisibilityOnly )
|
||||||
{
|
{
|
||||||
if( m_multiple )
|
if( m_multiple && !highContrast )
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2313,5 +2313,3 @@ void SELECTION_TOOL::setTransitions()
|
||||||
Go( &SELECTION_TOOL::selectSheetContents, PCB_ACTIONS::selectOnSheetFromEeschema.MakeEvent() );
|
Go( &SELECTION_TOOL::selectSheetContents, PCB_ACTIONS::selectOnSheetFromEeschema.MakeEvent() );
|
||||||
Go( &SELECTION_TOOL::updateSelection, EVENTS::SelectedItemsModified );
|
Go( &SELECTION_TOOL::updateSelection, EVENTS::SelectedItemsModified );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue