Do not use opacity for zone outlines

The opacity is intended to aid seeing through
zone filled areas and applying it to outlines
makes them hard to see and select.
This commit is contained in:
Jon Evans 2021-07-07 22:04:11 -04:00
parent edc2be9018
commit cafd42911e
1 changed files with 1 additions and 1 deletions

View File

@ -1695,7 +1695,7 @@ void PCB_PAINTER::draw( const ZONE* aZone, int aLayer )
if( m_pcbSettings.m_zoneOutlines && outline && outline->OutlineCount() > 0 )
{
m_gal->SetStrokeColor( color );
m_gal->SetStrokeColor( color.WithAlpha( 1.0 ) );
m_gal->SetIsFill( false );
m_gal->SetIsStroke( true );
m_gal->SetLineWidth( m_pcbSettings.m_outlineWidth );