Eagle board importer: enable rectangle on drawing layers
Now the graphical polygons in footprints are properly handled by the footprint editor, so there is no reason not to import them. Coverity CID: 168709
This commit is contained in:
parent
5eb56dd8b0
commit
e5c4cfc3b0
|
@ -1482,14 +1482,6 @@ void EAGLE_PLUGIN::packageRectangle( MODULE* aModule, wxXmlNode* aTree ) const
|
||||||
ERECT r( aTree );
|
ERECT r( aTree );
|
||||||
PCB_LAYER_ID layer = kicad_layer( r.layer );
|
PCB_LAYER_ID layer = kicad_layer( r.layer );
|
||||||
|
|
||||||
// Rectangles are not supported yet in footprints as they are not editable.
|
|
||||||
wxLogMessage( wxString::Format( "Unsupported rectangle in package %s"
|
|
||||||
" (%f mm, %f mm) (%f mm, %f mm), layer: %s",
|
|
||||||
aModule->GetFPID().GetLibItemName().c_str(), r.x1.ToMm(), r.y1.ToMm(),
|
|
||||||
r.x2.ToMm(), r.y2.ToMm(), eagle_layer_name( r.layer ) ) );
|
|
||||||
|
|
||||||
return;
|
|
||||||
|
|
||||||
if( IsCopperLayer( layer ) ) // skip copper "package.circle"s
|
if( IsCopperLayer( layer ) ) // skip copper "package.circle"s
|
||||||
{
|
{
|
||||||
wxLogMessage( wxString::Format(
|
wxLogMessage( wxString::Format(
|
||||||
|
|
Loading…
Reference in New Issue