From ce39c9694c658e7cae11fce61b7c769894b105e6 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 25 Dec 2021 03:50:08 +0000 Subject: [PATCH] Adjusted font color of bottom annotation items --- .../HexViewerWidget/AnnotationItem.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.hpp index b4b6754d..2a6947b5 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.hpp @@ -55,7 +55,8 @@ namespace Bloom::Widgets } [[nodiscard]] virtual QColor getLabelFontColor() const { - return QColor(0x8A, 0x8A, 0x8D); + return QColor(0x68, 0x68, 0x68); + } } }; }