From 79d17fcb6eea20c16076deffc312c643ada81817 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 14 Jul 2025 14:12:00 +0100 Subject: [PATCH] Cleanup export zone settings for initializing zones (KICAD-EYF). --- pcbnew/zone.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pcbnew/zone.cpp b/pcbnew/zone.cpp index cbdfb80c9b..7481168cbf 100644 --- a/pcbnew/zone.cpp +++ b/pcbnew/zone.cpp @@ -84,10 +84,9 @@ ZONE::ZONE( BOARD_ITEM_CONTAINER* aParent ) : SetIsRuleArea( true ); // Zones living in footprints have the rule area option if( aParent->GetBoard() ) - aParent->GetBoard()->GetDesignSettings().GetDefaultZoneSettings().ExportSetting( *this, - false ); + aParent->GetBoard()->GetDesignSettings().GetDefaultZoneSettings().ExportSetting( *this, false ); else - ZONE_SETTINGS().ExportSetting( *this ); + ZONE_SETTINGS().ExportSetting( *this, false ); m_needRefill = false; // True only after edits. }