diff --git a/src/vs/workbench/api/common/extHost.api.impl.ts b/src/vs/workbench/api/common/extHost.api.impl.ts index 6bb3af739e5..4bc7878a340 100644 --- a/src/vs/workbench/api/common/extHost.api.impl.ts +++ b/src/vs/workbench/api/common/extHost.api.impl.ts @@ -1124,6 +1124,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I return extHostDebugService.onDidChangeBreakpoints(listener, thisArgs, disposables); }, onDidChangeStackFrameFocus(listener, thisArg?, disposables?) { + checkProposedApiEnabled(extension, 'debugFocus'); return extHostDebugService.onDidChangeStackFrameFocus(listener, thisArg, disposables); }, registerDebugConfigurationProvider(debugType: string, provider: vscode.DebugConfigurationProvider, triggerKind?: vscode.DebugConfigurationProviderTriggerKind) {