minor bug: zones outlines hatch options not read from file
This commit is contained in:
parent
72fae7e9e3
commit
3de5ffc703
|
@ -266,6 +266,7 @@ int ZONE_CONTAINER::ReadDescr( FILE* aFile, int* aLineNum )
|
|||
break;
|
||||
}
|
||||
}
|
||||
/* Set hatch later, afer reading outlines corners data */
|
||||
}
|
||||
if( strnicmp( Line, "ZOptions", 8 ) == 0 ) // Options info found
|
||||
{
|
||||
|
@ -341,6 +342,9 @@ int ZONE_CONTAINER::ReadDescr( FILE* aFile, int* aLineNum )
|
|||
SetNet( 0 );
|
||||
}
|
||||
|
||||
/* Set hatch here, when outlines corners are read */
|
||||
m_Poly->SetHatch(outline_hatch);
|
||||
|
||||
return error ? 0 : 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue