From 4742c522508dfd61832a388d051d7cbd2dcc266a Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 30 Oct 2018 13:09:20 +0000 Subject: [PATCH] Highlight symbol fields when selected. --- eeschema/sch_painter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_painter.cpp b/eeschema/sch_painter.cpp index 3aa447ce1d..15d0c37e66 100644 --- a/eeschema/sch_painter.cpp +++ b/eeschema/sch_painter.cpp @@ -1094,7 +1094,7 @@ void SCH_PAINTER::draw( SCH_FIELD *aField, int aLayer ) default: color = m_schSettings.GetLayerColor( LAYER_FIELDS ); break; } - if( aField->IsMoving() ) + if( aField->IsMoving() || ( aField->GetParent() && aField->GetParent()->IsMoving() ) ) color = selectedBrightening( color ); if( !aField->IsVisible() )