From dba7d83c4f801f4456b417b42148764a3949efe6 Mon Sep 17 00:00:00 2001 From: Nav Date: Sun, 19 Mar 2023 01:37:19 +0000 Subject: [PATCH] Adjusted min width of hex viewer scene to prevent overlapping when the side panel is visible (this addresses a regression from a previous change, decreasing the min width of the memory inspection window) --- .../HexViewerWidget/ItemGraphicsScene.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.hpp index 9a4016a2..4538713a 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/HexViewerWidget/ItemGraphicsScene.hpp @@ -128,7 +128,7 @@ namespace Bloom::Widgets * * See https://bugreports.qt.io/browse/QTBUG-99189 for more on this. */ - return std::max(this->parent->viewport()->width(), 400) - 2; + return std::max(this->parent->viewport()->width(), 200) - 2; } void refreshItemPositionIndices();