From d07da51390019ff8d165d567462e9978905c1e06 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Wed, 11 Jan 2023 20:37:42 -0800 Subject: [PATCH] Fix copy-paste error --- eeschema/lib_shape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/lib_shape.cpp b/eeschema/lib_shape.cpp index dc5101b2ab..5de9d491ac 100644 --- a/eeschema/lib_shape.cpp +++ b/eeschema/lib_shape.cpp @@ -360,7 +360,7 @@ void LIB_SHAPE::print( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset if( aDimmed ) { fillColor.Desaturate( ); - fillColor = color.Mix( bg, 0.5f ); + fillColor = fillColor.Mix( bg, 0.5f ); } switch( GetShape() )