7
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:
Jon Evans 2024-11-17 16:22:40 -05:00
parent 88dbd46538
commit 251cbbd287

View File

@ -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;
}