Skip to content

Commit a40c65e

Browse files
authored
debt - global view container toolbar misses telemetry source (microsoft#254793)
1 parent 105b366 commit a40c65e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/vs/workbench/browser/parts/compositePart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export abstract class CompositePart<T extends Composite> extends Part {
8989
protected readonly registry: CompositeRegistry<T>,
9090
private readonly activeCompositeSettingsKey: string,
9191
private readonly defaultCompositeId: string,
92-
private readonly nameForTelemetry: string,
92+
protected readonly nameForTelemetry: string,
9393
private readonly compositeCSSClass: string,
9494
private readonly titleForegroundColor: string | undefined,
9595
private readonly titleBorderColor: string | undefined,

src/vs/workbench/browser/parts/paneCompositePart.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ export abstract class AbstractPaneCompositePart extends CompositePart<PaneCompos
365365
toggleMenuTitle: localize('moreActions', "More Actions..."),
366366
hoverDelegate: this.toolbarHoverDelegate,
367367
hiddenItemStrategy: HiddenItemStrategy.NoHide,
368-
highlightToggledItems: true
368+
highlightToggledItems: true,
369+
telemetrySource: this.nameForTelemetry
369370
}
370371
));
371372

0 commit comments

Comments
 (0)