Eeschema: fix incorrect size of junctions on screen.

Fixes: lp:1831931
https://bugs.launchpad.net/kicad/+bug/1831931
This commit is contained in:
jean-pierre charras 2019-06-17 18:06:28 +02:00
parent 4eab89d9ef
commit 15a67fc358
1 changed files with 1 additions and 2 deletions

View File

@ -908,9 +908,8 @@ void SCH_PAINTER::draw( SCH_JUNCTION *aJct, int aLayer )
else
color = getRenderColor( aJct, LAYER_JUNCTION, false );
m_gal->SetIsStroke(true);
m_gal->SetIsStroke(false);
m_gal->SetIsFill(true);
m_gal->SetStrokeColor( color );
m_gal->SetFillColor( color );
m_gal->DrawCircle( aJct->GetPosition(), SCH_JUNCTION::GetEffectiveSymbolSize() / 2.0 );
}