From 04f7fbfa4ae7f940c30a9b467aaad84906d6649a Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 2 Apr 2021 10:54:03 +0100 Subject: [PATCH] Don't draw selection in hyperlink colour. --- eeschema/sch_painter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/sch_painter.cpp b/eeschema/sch_painter.cpp index a7f97cf6f4..6a933b9f2b 100644 --- a/eeschema/sch_painter.cpp +++ b/eeschema/sch_painter.cpp @@ -1509,7 +1509,8 @@ void SCH_PAINTER::draw( const SCH_FIELD *aField, int aLayer ) bool underline = false; - if( aField->IsHypertext() && ( aField->GetFlags() & IS_ROLLOVER ) > 0 ) + if( aField->IsHypertext() && ( aField->GetFlags() & IS_ROLLOVER ) > 0 + && !drawingShadows && !aField->IsMoving() ) { color = PUREBLUE; underline = true;