From 251e0ca19c45330ca19930e2f09d4e7832f9dd8e Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Sat, 22 Jun 2019 10:56:37 -0700 Subject: [PATCH] Minor bug fix to zones On linux, m_brdOutlinesValid initialized to "true" which prevented non-copper zones from filling correctly --- pcbnew/zone_filler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/zone_filler.cpp b/pcbnew/zone_filler.cpp index c4bd0ce7d7..4adc4cd5fa 100644 --- a/pcbnew/zone_filler.cpp +++ b/pcbnew/zone_filler.cpp @@ -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 ) { }