Skip to content

Commit 96d12a3

Browse files
Fix error in settings
1 parent a916eac commit 96d12a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension/extensionInit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
215215

216216
context.subscriptions.push(
217217
workspace.onDidChangeConfiguration((event: ConfigurationChangeEvent) => {
218-
if (event.affectsConfiguration('debugpy')) {
218+
if (event.affectsConfiguration('debugpy.showPythonInlineValues')) {
219219
const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
220220
if (!showInlineValues) {
221221
registerInlineValuesProviderDisposable.dispose();

0 commit comments

Comments
 (0)