We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a5437b commit 445ed8eCopy full SHA for 445ed8e
src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.ts
@@ -332,11 +332,11 @@ export class InlineChatWidget {
332
this._store.add(markdownMessageToolbar);
333
334
this._store.add(addDisposableListener(this._elements.root, EventType.CONTEXT_MENU, async (event: MouseEvent) => {
335
- this.onContextMenu(event);
+ this._onContextMenu(event);
336
}));
337
}
338
339
- private onContextMenu(event: MouseEvent) {
+ private _onContextMenu(event: MouseEvent) {
340
this._contextMenuService.showContextMenu({
341
menuId: MENU_INLINE_CHAT_WIDGET_TOGGLE,
342
getAnchor: () => event,
0 commit comments