We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 098192c commit 09b15b1Copy full SHA for 09b15b1
devdocs-macos/DocumentationWindowController.swift
@@ -60,7 +60,12 @@ class DocumentationWindowController: NSWindowController {
60
toolbar.autosavesConfiguration = true
61
toolbar.displayMode = .iconOnly
62
toolbar.delegate = self
63
- window?.toolbar = toolbar
+
64
+ if let window = window {
65
+ window.titlebarAppearsTransparent = true
66
+ window.toolbarStyle = .automatic
67
+ window.toolbar = toolbar
68
+ }
69
}
70
71
// MARK:- NotificationCenter observers
0 commit comments