From a55b7ecf69fdf6e7801f6c8a0ee8c00a395d1461 Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 19 Sep 2019 17:33:14 +0200 Subject: [PATCH] fixes #80921 --- src/vs/workbench/contrib/debug/browser/callStackView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/callStackView.ts b/src/vs/workbench/contrib/debug/browser/callStackView.ts index 0e5af68b0df..4749eff2fc0 100644 --- a/src/vs/workbench/contrib/debug/browser/callStackView.ts +++ b/src/vs/workbench/contrib/debug/browser/callStackView.ts @@ -312,7 +312,7 @@ export class CallStackView extends ViewletPanel { } const actions: IAction[] = []; - const actionsDisposable = createAndFillInContextMenuActions(this.contributedContextMenu, { arg: this.getContextForContributedActions(element), shouldForwardArgs: true }, actions, this.contextMenuService); + const actionsDisposable = createAndFillInContextMenuActions(this.contributedContextMenu, { arg: this.getContextForContributedActions(element), shouldForwardArgs: false }, actions, this.contextMenuService); this.contextMenuService.showContextMenu({ getAnchor: () => e.anchor,