From 8732df196ebef23d90bbb0a0d8ce8530ca8060aa Mon Sep 17 00:00:00 2001 From: Nav Date: Tue, 30 Aug 2022 19:20:00 +0100 Subject: [PATCH] Disable auto refresh by default, in memory inspection widget --- .../TargetMemoryInspectionPaneSettings.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPaneSettings.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPaneSettings.hpp index cb842087..fbaafbd6 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPaneSettings.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPaneSettings.hpp @@ -11,8 +11,8 @@ namespace Bloom::Widgets { struct TargetMemoryInspectionPaneSettings { - bool refreshOnTargetStop = true; - bool refreshOnActivation = true; + bool refreshOnTargetStop = false; + bool refreshOnActivation = false; HexViewerWidgetSettings hexViewerWidgetSettings;