Skip to content

Commit 82b40bd

Browse files
authored
if false, migrate setting to off (microsoft#223532)
fixes microsoft#223315
1 parent 304c83e commit 82b40bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/debug/browser/debugSettingMigration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Registry.as<IConfigurationMigrationRegistry>(Extensions.ConfigurationMigration)
1313
if (value === true) {
1414
newValue = 'on';
1515
} else if (value === false) {
16-
newValue = 'auto';
16+
newValue = 'off';
1717
}
1818
return [
1919
['debug.autoExpandLazyVariables', { value: newValue }],

0 commit comments

Comments
 (0)