macOS: use unobtrusive when quick terminal is visible

This commit is contained in:
Lukas
2025-11-09 13:19:03 +01:00
parent 84082c2b96
commit 52d3329f84

View File

@@ -200,7 +200,7 @@ class UpdateDriver: NSObject, SPUUserDriver {
/// True if there is a target that can render our unobtrusive update checker.
var hasUnobtrusiveTarget: Bool {
NSApp.windows.contains { window in
window is TerminalWindow &&
(window is TerminalWindow || window is QuickTerminalWindow) &&
window.isVisible
}
}