From 318250ae1230966df2c15e0af23688f4dfa646a6 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Mon, 29 Oct 2018 16:49:15 +0100 Subject: [PATCH] Fix #61970 --- src/vs/base/browser/ui/iconLabel/iconLabel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/base/browser/ui/iconLabel/iconLabel.ts b/src/vs/base/browser/ui/iconLabel/iconLabel.ts index a2af0b7e72bd8..9f5cba80d4a35 100644 --- a/src/vs/base/browser/ui/iconLabel/iconLabel.ts +++ b/src/vs/base/browser/ui/iconLabel/iconLabel.ts @@ -137,7 +137,7 @@ export class IconLabel extends Disposable { this.domNode.title = options && options.title ? options.title : ''; if (this.labelNode instanceof HighlightedLabel) { - this.labelNode.set(label || '', options ? options.matches : void 0, void 0, options && options.labelEscapeNewLines); + this.labelNode.set(label || '', options ? options.matches : void 0, options ? options.title : void 0, options && options.labelEscapeNewLines); } else { this.labelNode.textContent = label || ''; }