From 1c848622d7d5c6b893bbff43789a41c182f108bd Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Sat, 24 Oct 2020 10:08:56 -0400 Subject: [PATCH] Remove junctions as auto wire targets Fix #6100 --- eeschema/sch_junction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_junction.h b/eeschema/sch_junction.h index b88dfd57d5..b1ab6fe8c1 100644 --- a/eeschema/sch_junction.h +++ b/eeschema/sch_junction.h @@ -95,7 +95,7 @@ public: wxPoint GetPosition() const override { return m_pos; } void SetPosition( const wxPoint& aPosition ) override { m_pos = aPosition; } - bool IsPointClickableAnchor( const wxPoint& aPos ) const override { return GetPosition() == aPos; } + bool IsPointClickableAnchor( const wxPoint& aPos ) const override { return false; } int GetDiameter() const; void SetDiameter( int aDiameter ) { m_diameter = aDiameter; }