Skip to content

Commit beb36d1

Browse files
committed
Make titleBarStyle = 'custom' by default on Windows
Right now, this change doesn't do anything, because titleBarStyle is ignored on Windows (see AppWindow.constructor). Same logic as 89c0e26
1 parent 5479cab commit beb36d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/lib/stores/app-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ export class AppStore extends TypedBaseStore<IAppState> {
698698
private selectedTabSize = tabSizeDefault
699699
private selectedDiffFontSize = defaultDiffFontSize
700700
private selectedDiffFontFamily = defaultDiffFontFamily
701-
private titleBarStyle: TitleBarStyle = 'native'
701+
private titleBarStyle: TitleBarStyle = __WIN32__ ? 'custom' : 'native'
702702
private showRecentRepositories: boolean = true
703703
private showWorktrees: boolean = false
704704
private showWorktreesInSidebar: boolean = false

0 commit comments

Comments
 (0)