From 1d09f89acf6d49f6fca2c23af7f3993b6d4bca3a Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 25 Dec 2021 23:17:57 +0000 Subject: [PATCH] Removed conditional font color in byte items with changed values, in the hex viewer --- .../TargetMemoryInspectionPane/HexViewerWidget/ByteItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteItem.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteItem.cpp index 544bf672..d9ea842e 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteItem.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteItem.cpp @@ -61,7 +61,7 @@ void ByteItem::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, static const auto hoveredAnnotationBackgroundColor = QColor(0x8E, 0x8B, 0x83, 50); const auto isEnabled = this->isEnabled(); - auto textColor = this->valueChanged ? valueChangedTextColor : standardTextColor; + auto textColor = standardTextColor; auto backgroundColor = std::optional(); font.setPixelSize(11);