diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp index 6dc1a527..287c802f 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/HexViewerItemRenderer.cpp @@ -39,14 +39,14 @@ namespace Widgets auto* parentItem = firstItem->parent; while (parentItem != nullptr) { - painter->setOpacity(1); this->paintItem(parentItem, painter); parentItem = parentItem->parent; + painter->setOpacity(1); } for (auto& item : visibleItems) { - painter->setOpacity(1); this->paintItem(item, painter); + painter->setOpacity(1); } if (this->hexViewerState.highlightingEnabled) {