From 5f48e966604a77f68c20fb2597876e5aa0a0ce4e Mon Sep 17 00:00:00 2001 From: Xusheng Date: Fri, 8 Nov 2024 13:40:16 +0800 Subject: [PATCH] Mark "debugger.x64dbgEngPath" as requiresRestart. Fix https://github.com/Vector35/debugger/issues/657 --- core/debugger.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/debugger.cpp b/core/debugger.cpp index d66c6bd..0c9a9d4 100644 --- a/core/debugger.cpp +++ b/core/debugger.cpp @@ -86,7 +86,8 @@ static void RegisterSettings() "type" : "string", "default" : "", "description" : "Path of the x64 DbgEng Installation. This folder should contain an x64 dbgeng.dll.", - "ignore" : ["SettingsProjectScope", "SettingsResourceScope"] + "ignore" : ["SettingsProjectScope", "SettingsResourceScope"], + "requiresRestart" : true })"); settings->RegisterSetting("debugger.x86dbgEngPath", R"({ @@ -94,7 +95,8 @@ static void RegisterSettings() "type" : "string", "default" : "", "description" : "Path of the x86 DbgEng Installation. This folder should contain an x86 dbgeng.dll.", - "ignore" : ["SettingsProjectScope", "SettingsResourceScope"] + "ignore" : ["SettingsProjectScope", "SettingsResourceScope"], + "requiresRestart" : true })"); settings->RegisterSetting("debugger.checkDbgEngDLLPath", R"({