Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Pasero <benjpas@microsoft.com>2020-05-28 08:44:56 +0300
committerBenjamin Pasero <benjpas@microsoft.com>2020-05-28 08:45:06 +0300
commitfd0051cde72ca015166e3f6fc10af9230fcc54ec (patch)
tree6e2364cb303bae2ca605835624833c159f5bffda
parent229602bb7910060b727d5b40ea38f24d109b50ea (diff)
Custom Titlebar is incomplete and not draggable (fix #98669)
-rw-r--r--src/vs/workbench/services/title/electron-sandbox/titleService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/services/title/electron-sandbox/titleService.ts b/src/vs/workbench/services/title/electron-sandbox/titleService.ts
index d19614e0e48..cace9e5cf37 100644
--- a/src/vs/workbench/services/title/electron-sandbox/titleService.ts
+++ b/src/vs/workbench/services/title/electron-sandbox/titleService.ts
@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
-import { TitlebarPart } from 'vs/workbench/browser/parts/titlebar/titlebarPart';
+import { TitlebarPart } from 'vs/workbench/electron-sandbox/parts/titlebar/titlebarPart';
import { ITitleService } from 'vs/workbench/services/title/common/titleService';
registerSingleton(ITitleService, TitlebarPart);