Skip to content

Commit

Permalink
bugfix(swift): Disable Mac spaces support due to lack of transition o…
Browse files Browse the repository at this point in the history
…pacity
  • Loading branch information
Peter Klingelhofer committed Aug 10, 2024
1 parent 5c1658a commit 0107df0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 4 additions & 4 deletions swift/exhale.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@
CODE_SIGN_ENTITLEMENTS = exhale/exhale.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 152;
CURRENT_PROJECT_VERSION = 153;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"exhale/Preview Content\"";
DEVELOPMENT_TEAM = VZCHHV7VNW;
Expand All @@ -460,7 +460,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.5.2;
MARKETING_VERSION = 1.5.3;
PRODUCT_BUNDLE_IDENTIFIER = peterklingelhofer.exhale;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = macosx;
Expand All @@ -479,7 +479,7 @@
CODE_SIGN_ENTITLEMENTS = exhale/exhale.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 152;
CURRENT_PROJECT_VERSION = 153;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"exhale/Preview Content\"";
DEVELOPMENT_TEAM = VZCHHV7VNW;
Expand All @@ -493,7 +493,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.5.2;
MARKETING_VERSION = 1.5.3;
PRODUCT_BUNDLE_IDENTIFIER = peterklingelhofer.exhale;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = macosx;
Expand Down
5 changes: 1 addition & 4 deletions swift/exhale/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate {
window.isOpaque = false
window.ignoresMouseEvents = true
window.setFrame(screen.frame, display: true)
window.collectionBehavior = [
.canJoinAllSpaces,
.fullScreenAuxiliary,
] // Ensures window appears in all spaces
// window.collectionBehavior = [.canJoinAllSpaces] // Ensures window appears in all spaces

windows.append(window)
}
Expand Down

0 comments on commit 0107df0

Please sign in to comment.