From 15a67fc358db44019d2479766d77c4d97276f6c6 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 17 Jun 2019 18:06:28 +0200 Subject: [PATCH] Eeschema: fix incorrect size of junctions on screen. Fixes: lp:1831931 https://bugs.launchpad.net/kicad/+bug/1831931 --- eeschema/sch_painter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eeschema/sch_painter.cpp b/eeschema/sch_painter.cpp index 0c64239419..4f13f5d78b 100644 --- a/eeschema/sch_painter.cpp +++ b/eeschema/sch_painter.cpp @@ -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 ); }