Fix type in group command enablement.

Fixes https://gitlab.com/kicad/code/kicad/issues/8821
This commit is contained in:
Jeff Young 2021-07-25 01:27:27 +01:00
parent 39e938db3e
commit d613292b67
1 changed files with 1 additions and 1 deletions

View File

@ -2138,7 +2138,7 @@ BOARD::GroupLegalOpsField BOARD::GroupLegalOps( const PCB_SELECTION& selection )
if( item->Type() == PCB_GROUP_T )
hasGroup = true;
if( item->GetParent() && item->GetParent()->Type() == PCB_GROUP_T )
if( static_cast<BOARD_ITEM*>( item )->GetParentGroup() )
hasMember = true;
}