Allow spoke width to equal minimum zone width in pcbnew (fix bug #1255059)
This commit is contained in:
parent
5df7288678
commit
aef48d2716
|
@ -443,7 +443,7 @@ bool DIALOG_COPPER_ZONE::AcceptOptions( bool aPromptForErrors, bool aUseExportab
|
|||
(double) m_settings.m_ThermalReliefCopperBridge / IU_PER_MILS );
|
||||
}
|
||||
|
||||
if( m_settings.m_ThermalReliefCopperBridge <= m_settings.m_ZoneMinThickness )
|
||||
if( m_settings.m_ThermalReliefCopperBridge < m_settings.m_ZoneMinThickness )
|
||||
{
|
||||
DisplayError( this,
|
||||
_( "Thermal relief spoke width is smaller than the minimum width." ) );
|
||||
|
|
Loading…
Reference in New Issue