From 2514b02d7129d93d4566b52c8281466fffdac6cf Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 26 Aug 2023 02:53:30 +0100 Subject: [PATCH] Tweaked highlighting border colour. --- .../HexViewerWidget/HexViewerItemRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp index 287c802f..11b04e0e 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp @@ -272,7 +272,7 @@ namespace Widgets } painter->setRenderHints(QPainter::RenderHint::Antialiasing | QPainter::RenderHint::SmoothPixmapTransform, true); - painter->setPen(QPen(QColor(0x78, 0x78, 0x78), 2)); + painter->setPen(QPen(QColor(0x58, 0x58, 0x58), 2)); painter->setBrush(Qt::BrushStyle::NoBrush); painter->drawPath(painterPath); }