Do you already have a solution for this problem?
Post
Replies
Boosts
Views
Activity
I have the exact same problem. Did you find a solution @Emilia_S ?@Emilia_S
Interestingly, the issue seems to arise when NSColor.controlAccentColor is called anywhere in the code.
Removing this reference resolves the issue. If you still need the accent color as a NSColor, you can use the following workaround
// ❌ breaks SwiftUI accent color
let color = NSColor.controlAccentColor
// ✅ uses the SwiftUI accentColor as value
let color = NSColor(.accentColor)
I filed a radar under FB13688723
I have exactly the same issue. Forced to disable control center widgets until this get's resolved.