mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 22:25:30 +00:00
Handle PCB_SHAPE in GetItems API
This commit is contained in:
parent
88dbd46538
commit
251cbbd287
@ -417,6 +417,24 @@ HANDLER_RESULT<GetItemsResponse> API_HANDLER_PCB::handleGetItems( GetItems& aMsg
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_T:
|
||||
{
|
||||
handledAnything = true;
|
||||
bool inserted = false;
|
||||
|
||||
for( BOARD_ITEM* item : board->Drawings() )
|
||||
{
|
||||
if( item->Type() == PCB_SHAPE_T )
|
||||
{
|
||||
items.emplace_back( item );
|
||||
inserted = true;
|
||||
}
|
||||
}
|
||||
|
||||
if( inserted )
|
||||
typesInserted.insert( PCB_SHAPE_T );
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user