Fix type in group command enablement.
Fixes https://gitlab.com/kicad/code/kicad/issues/8821
This commit is contained in:
parent
39e938db3e
commit
d613292b67
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue