Minor bug fix to zones

On linux, m_brdOutlinesValid initialized to "true" which prevented
non-copper zones from filling correctly
This commit is contained in:
Seth Hillbrand 2019-06-22 10:56:37 -07:00
parent 1ece1172c5
commit 251e0ca19c
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ static const bool s_DumpZonesWhenFilling = false;
ZONE_FILLER::ZONE_FILLER( BOARD* aBoard, COMMIT* aCommit ) :
m_board( aBoard ), m_commit( aCommit ), m_progressReporter( nullptr )
m_board( aBoard ), m_brdOutlinesValid( false ), m_commit( aCommit ),
m_progressReporter( nullptr )
{
}