From 4165ec3384445ae5d4bbbd21582d68466df947f3 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sat, 9 May 2020 17:13:53 -0400 Subject: [PATCH] Don't set hatch mode for unknown hatch style Fixes #4383 --- pcbnew/altium2kicadpcb_plugin/altium_pcb.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pcbnew/altium2kicadpcb_plugin/altium_pcb.cpp b/pcbnew/altium2kicadpcb_plugin/altium_pcb.cpp index b00e055387..3ee0dd161f 100644 --- a/pcbnew/altium2kicadpcb_plugin/altium_pcb.cpp +++ b/pcbnew/altium2kicadpcb_plugin/altium_pcb.cpp @@ -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 ); }