From acb05904dd80f2d7d89f2807aaf2a737638965fe Mon Sep 17 00:00:00 2001 From: Nav Date: Wed, 3 May 2023 21:44:47 +0100 Subject: [PATCH] Made hex viewer hover rectangles more prominent --- .../HexViewerWidget/ItemGraphicsScene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.cpp index 347c4cb2..7ee3271e 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.cpp @@ -164,7 +164,7 @@ namespace Bloom::Widgets this->setSceneRect(0, 0, this->getSceneWidth(), 0); - static const auto hoverRectBackgroundColor = QColor(0x8E, 0x8B, 0x83, 30); + static const auto hoverRectBackgroundColor = QColor(0x8E, 0x8B, 0x83, 45); this->hoverRectX->setBrush(hoverRectBackgroundColor); this->hoverRectY->setBrush(hoverRectBackgroundColor);