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 b377b5bbed
commit 8de93ad8b4
1 changed files with 1 additions and 2 deletions

View File

@ -909,9 +909,8 @@ void SCH_PAINTER::draw( SCH_JUNCTION *aJct, int aLayer )
else
color = getOverlayColor( aJct, color, 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 );
}