Don't set hatch mode for unknown hatch style

Fixes #4383
This commit is contained in:
Jon Evans 2020-05-09 17:13:53 -04:00
parent b5dffa8229
commit 4165ec3384
1 changed files with 4 additions and 1 deletions

View File

@ -1285,10 +1285,12 @@ void ALTIUM_PCB::ParsePolygons6Data(
}
}
if( elem.hatchstyle != ALTIUM_POLYGON_HATCHSTYLE::SOLID )
if( elem.hatchstyle != ALTIUM_POLYGON_HATCHSTYLE::SOLID &&
elem.hatchstyle != ALTIUM_POLYGON_HATCHSTYLE::UNKNOWN )
{
zone->SetFillMode( ZONE_FILL_MODE::HATCH_PATTERN );
zone->SetHatchFillTypeThickness( elem.trackwidth );
if( elem.hatchstyle == ALTIUM_POLYGON_HATCHSTYLE::NONE )
{
// use a small hack to get us only an outline (hopefully)
@ -1299,6 +1301,7 @@ void ALTIUM_PCB::ParsePolygons6Data(
{
zone->SetHatchFillTypeGap( elem.gridsize - elem.trackwidth );
}
zone->SetHatchFillTypeOrientation(
elem.hatchstyle == ALTIUM_POLYGON_HATCHSTYLE::DEGREE_45 ? 45 : 0 );
}