From c01fbcc99c2c3067d260f60d3d4b22559a15731e Mon Sep 17 00:00:00 2001 From: Nav Date: Sun, 17 Jul 2022 17:12:59 +0100 Subject: [PATCH] Tweaked positioning of ByteAddressItem in hex viewer --- .../HexViewerWidget/ByteAddressContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteAddressContainer.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteAddressContainer.cpp index 495d33ce..e039a90d 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteAddressContainer.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ByteAddressContainer.cpp @@ -30,7 +30,7 @@ namespace Bloom::Widgets addressLabel->setAddressHex(firstByteItem->relativeAddressHex); addressLabel->setPos( leftMargin, - firstByteItem->pos().y() + firstByteItem->pos().y() + 3 // +3 to have the address item and byte item align vertically, from center ); }