Disable auto refresh by default, in memory inspection widget

This commit is contained in:
Nav
2022-08-30 19:20:00 +01:00
parent 7971ad2070
commit 8732df196e

View File

@@ -11,8 +11,8 @@ namespace Bloom::Widgets
{
struct TargetMemoryInspectionPaneSettings
{
bool refreshOnTargetStop = true;
bool refreshOnActivation = true;
bool refreshOnTargetStop = false;
bool refreshOnActivation = false;
HexViewerWidgetSettings hexViewerWidgetSettings;