Move PCBNew overrides to nullable properties.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/5562
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
|
||||
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@@ -132,7 +132,7 @@ ZONE_SETTINGS& ZONE_SETTINGS::operator << ( const ZONE& aSource )
|
||||
{
|
||||
m_ZonePriority = aSource.GetAssignedPriority();
|
||||
m_FillMode = aSource.GetFillMode();
|
||||
m_ZoneClearance = aSource.GetLocalClearance();
|
||||
m_ZoneClearance = aSource.GetLocalClearance().value();
|
||||
m_ZoneMinThickness = aSource.GetMinThickness();
|
||||
m_HatchThickness = aSource.GetHatchThickness();
|
||||
m_HatchGap = aSource.GetHatchGap();
|
||||
|
||||
Reference in New Issue
Block a user