Skip to content

Commit

Permalink
Merge pull request #224 from IBM/development
Browse files Browse the repository at this point in the history
Version 3.2.1 Build 127
  • Loading branch information
SMartorelli authored Sep 25, 2024
2 parents 06a59ff + 30fe8b6 commit 52f0241
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python version (for python projects only)
sonar.python.version=3
# Project Version to be used as Code Definition
sonar.projectVersion=3.2.0.125
sonar.projectVersion=3.2.1.127
# Folders excluded from the scan
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**
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ extension NotificationDispatch {
} else if object.hideTitleBarButtons ?? false {
mainWindow.styleMask.remove(.closable)
mainWindow.styleMask.remove(.miniaturizable)
} else {
// Not sure why since Sonoma we need to manually add the default buttons to the Title Bar.
mainWindow.styleMask.update(with: .closable)
mainWindow.styleMask.update(with: .miniaturizable)
}
mainWindow.canBecomeVisibleWithoutLogin = true

Expand Down
Loading

0 comments on commit 52f0241

Please sign in to comment.