Browse Source

Don't desaturate the selection shadow

Selection shadows are helpful when showing which elements are selected
and there is no benefit (and some downside) to having their color
removed.

Fixes https://gitlab.com/kicad/code/kicad/issues/13878
newinvert
Seth Hillbrand 3 years ago
parent
commit
9f8b25a0b0
  1. 2
      eeschema/sch_painter.cpp

2
eeschema/sch_painter.cpp

@ -484,7 +484,7 @@ COLOR4D SCH_PAINTER::getRenderColor( const EDA_ITEM *aItem, int aLayer, bool aDr
color = color.Darken( 0.5f );
}
if( aDimmed )
if( aDimmed && !( aItem->IsSelected() && aDrawingShadows ) )
{
COLOR4D sheetColour = m_schSettings.GetLayerColor( LAYER_SCHEMATIC_BACKGROUND );
color.Desaturate();

Loading…
Cancel
Save