From 916965488c9d3d2fd2b6da2584e1795fbc908e85 Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Fri, 6 Feb 2026 12:57:35 -0700 Subject: [PATCH] Only highlight when selected --- gui/SquareConnectionPainter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/SquareConnectionPainter.cpp b/gui/SquareConnectionPainter.cpp index 03373ae..57739e1 100644 --- a/gui/SquareConnectionPainter.cpp +++ b/gui/SquareConnectionPainter.cpp @@ -231,9 +231,9 @@ void SquareConnectionPainter::paint( painter->drawPath(path); } else { QColor base = selected ? style.selectedColor() : style.normalColor(); - QColor color = activeColor(base); + QColor color = selected ? base : activeColor(base); float width = style.lineWidth(); - if (peakLevel > 0.005f) + if (!selected && peakLevel > 0.005f) width += peakLevel * 1.5f; QPen pen;