altium: fix compilation issue due to rebase
This commit is contained in:
parent
1400e5cdb9
commit
a981ffe8c7
|
@ -883,17 +883,12 @@ void SCH_ALTIUM_PLUGIN::ParseRoundRectangle( const std::map<wxString, wxString>&
|
||||||
rect->SetEnd( GetRelativePosition( elem.bottomLeft, component ) );
|
rect->SetEnd( GetRelativePosition( elem.bottomLeft, component ) );
|
||||||
rect->SetWidth( elem.lineWidth );
|
rect->SetWidth( elem.lineWidth );
|
||||||
|
|
||||||
if( elem.isSolid )
|
if( !elem.isSolid )
|
||||||
{
|
rect->SetFillMode( FILL_TYPE::NO_FILL );
|
||||||
if( elem.color == elem.areacolor )
|
else if( elem.color == elem.areacolor )
|
||||||
rect->SetFillMode( FILLED_SHAPE );
|
rect->SetFillMode( FILL_TYPE::FILLED_SHAPE );
|
||||||
else
|
else
|
||||||
rect->SetFillMode( FILLED_WITH_BG_BODYCOLOR );
|
rect->SetFillMode( FILL_TYPE::FILLED_WITH_BG_BODYCOLOR );
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
rect->SetFillMode( NO_FILL );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue