fix(mac): keep Canvas below Voice Wake overlay
parent
893eef846d
commit
08a473fb35
|
|
@ -206,7 +206,8 @@ final class CanvasWindowController: NSWindowController, WKNavigationDelegate, NS
|
||||||
styleMask: [.borderless],
|
styleMask: [.borderless],
|
||||||
backing: .buffered,
|
backing: .buffered,
|
||||||
defer: false)
|
defer: false)
|
||||||
panel.level = .statusBar
|
// Keep Canvas below the Voice Wake overlay panel.
|
||||||
|
panel.level = NSWindow.Level(rawValue: NSWindow.Level.statusBar.rawValue - 1)
|
||||||
panel.hasShadow = true
|
panel.hasShadow = true
|
||||||
panel.isMovable = false
|
panel.isMovable = false
|
||||||
panel.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary]
|
panel.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue