From a0656567c093a589436346ba774a8746ba682479 Mon Sep 17 00:00:00 2001 From: SteVen Batten <6561887+sbatten@users.noreply.github.com> Date: Fri, 15 Jun 2018 16:36:15 -0700 Subject: [PATCH] app icon url --- src/vs/workbench/browser/parts/titlebar/titlebarPart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts b/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts index 316a65dc40d..27b5346de92 100644 --- a/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts +++ b/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts @@ -252,7 +252,7 @@ export class TitlebarPart extends Part implements ITitleService { // App Icon this.appIcon = $(this.titleContainer).img({ class: 'window-appicon', - src: paths.join(this.environmentService.appRoot, 'resources/linux/code.png') + src: paths.join(this.environmentService.appRoot, isWindows ? 'resources/win32/code.ico' : 'resources/linux/code.png') }).on(EventType.DBLCLICK, (e) => { EventHelper.stop(e, true); this.windowService.closeWindow().then(null, errors.onUnexpectedError); -- GitLab