Allow spoke width to equal minimum zone width in pcbnew (fix bug #1255059)

This commit is contained in:
scrizt 2013-12-08 12:00:20 +02:00 committed by Marco Mattila
parent 5df7288678
commit aef48d2716
1 changed files with 1 additions and 1 deletions

View File

@ -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." ) );