From 2ff7a3fdde0c56e8117d09c773240c334b923b8d Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 17 Sep 2022 20:55:37 +0100 Subject: [PATCH] Fixed annotation item italic bug in memory inspection pane --- .../HexViewerWidget/AnnotationItem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.cpp index cd85ad18..f12269fd 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/AnnotationItem.cpp @@ -52,6 +52,7 @@ namespace Bloom::Widgets auto font = painter->font(); font.setPixelSize(this->getLabelFontSize()); + font.setItalic(false); painter->setFont(font); const auto isEnabled = this->isEnabled();