Browse Source

CONVERT_TOOL::CreateLines() doesn't use SKIP_STRUCT flag.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16930
newinvert
Jeff Young 2 years ago
parent
commit
0cf433b28e
  1. 5
      pcbnew/tools/convert_tool.cpp

5
pcbnew/tools/convert_tool.cpp

@ -1103,10 +1103,7 @@ int CONVERT_TOOL::CreateLines( const TOOL_EVENT& aEvent )
m_selectionTool->ClearSelection();
for( EDA_ITEM* item : selectionCopy )
{
if( item->GetFlags() & SKIP_STRUCT )
commit.Remove( item );
}
commit.Remove( item );
}
commit.Push( _( "Create Lines" ) );

Loading…
Cancel
Save