Skip to content

Commit

Permalink
Mark "debugger.x64dbgEngPath" as requiresRestart. Fix Vector35#657
Browse files Browse the repository at this point in the history
  • Loading branch information
xusheng6 committed Nov 8, 2024
1 parent 5d4f7c0 commit 5f48e96
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,17 @@ 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"({
"title" : "x86 DbgEng Installation Path",
"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"({
Expand Down

0 comments on commit 5f48e96

Please sign in to comment.