We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e64f1 commit 3fc5ba7Copy full SHA for 3fc5ba7
1 file changed
Core/Sources/SuggestionWidget/SuggestionWidgetController.swift
@@ -12,7 +12,7 @@ import XcodeInspector
12
@MainActor
13
public final class SuggestionWidgetController: NSObject {
14
// you should make these window `.transient` so they never show up in the mission control.
15
-
+
16
private lazy var fullscreenDetector = {
17
let it = CanBecomeKeyWindow(
18
contentRect: .zero,
@@ -121,7 +121,7 @@ public final class SuggestionWidgetController: NSObject {
121
it.isReleasedWhenClosed = false
122
it.isOpaque = false
123
it.backgroundColor = .clear
124
- it.level = .init(NSWindow.Level.floating.rawValue + 1)
+ it.level = .init(NSWindow.Level.floating.rawValue - 1)
125
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
126
it.hasShadow = true
127
it.contentView = NSHostingView(
0 commit comments