Skip to content

Commit 52f0241

Browse files
authored
Merge pull request #224 from IBM/development
Version 3.2.1 Build 127
2 parents 06a59ff + 30fe8b6 commit 52f0241

File tree

5 files changed

+59
-54
lines changed

5 files changed

+59
-54
lines changed

.sonarcloud.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python version (for python projects only)
22
sonar.python.version=3
33
# Project Version to be used as Code Definition
4-
sonar.projectVersion=3.2.0.125
4+
sonar.projectVersion=3.2.1.127
55
# Folders excluded from the scan
66
sonar.exclusions=**/Notification Agent Core Tests/**,**/Notification Agent Alert Tests/**,**/Notification Agent Banner Tests/**,**/Notification Agent Popup Tests/**,**/Notification Agent Onboarding Tests/**,**/Notification Agent Popup UI Tests/**,**/Notification Agent Onboarding UI Tests/**,**/Notification Agent Core/Controllers/HelpBuilder.swift**

Notification Agent Onboarding/Extensions/NotificationDispatch-Extension.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ extension NotificationDispatch {
3333
} else if object.hideTitleBarButtons ?? false {
3434
mainWindow.styleMask.remove(.closable)
3535
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)
3640
}
3741
mainWindow.canBecomeVisibleWithoutLogin = true
3842

0 commit comments

Comments
 (0)