Commit 249cb0de authored by Marco Mattila's avatar Marco Mattila

Fix zone fill state toggling when saving and reloading a board file in pcbnew.

parent 2c7628fd
......@@ -340,7 +340,7 @@ int ZONE_CONTAINER::ReadDescr( LINE_READER* aReader )
if( arcsegmentcount >= ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF )
m_ArcToSegmentsCount = ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF;
m_IsFilled = fillstate == 'F' ? true : false;
m_IsFilled = (fillstate == 'S') ? true : false;
}
else if( strnicmp( Line, "ZClearance", 10 ) == 0 ) // Clearence and pad options info found
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment