diff --git a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts index a5c9bbe69d4e5f4b2c0b17542f771dc034a112c2..fcfea9b352d3054da19f3cbc362d397f6cf6de7f 100644 --- a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts +++ b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts @@ -62,7 +62,7 @@ class OutlineItem extends BreadcrumbsItem { if (!(other instanceof OutlineItem)) { return false; } - return this.element === other.element && + return this.element.element === other.element.element && this.options.showFileIcons === other.options.showFileIcons && this.options.showSymbolIcons === other.options.showSymbolIcons; }