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 464af25 commit 637334cCopy full SHA for 637334c
Notification Agent Onboarding/Extensions/NotificationDispatch-Extension.swift
@@ -33,6 +33,10 @@ extension NotificationDispatch {
33
} else if object.hideTitleBarButtons ?? false {
34
mainWindow.styleMask.remove(.closable)
35
mainWindow.styleMask.remove(.miniaturizable)
36
+ } else {
37
+ // Not sure why since Sonoma we need to manually add the default buttons to the Title Bar.
38
+ mainWindow.styleMask.update(with: .closable)
39
+ mainWindow.styleMask.update(with: .miniaturizable)
40
}
41
mainWindow.canBecomeVisibleWithoutLogin = true
42
0 commit comments