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:
parent
1ece1172c5
commit
251e0ca19c
|
@ -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 )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue