mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
fix double title on windows (again)
This commit is contained in:
@@ -181,7 +181,7 @@ export class CodeWindow implements ICodeWindow {
|
||||
if (isLinux) {
|
||||
useCustomTitleStyle = windowConfig && windowConfig.titleBarStyle === 'custom';
|
||||
} else {
|
||||
useCustomTitleStyle = windowConfig && windowConfig.titleBarStyle !== 'native';
|
||||
useCustomTitleStyle = !windowConfig || !windowConfig.titleBarStyle || windowConfig.titleBarStyle === 'custom'; // Default to custom on Windows
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user