mirror of
https://github.com/lwouis/alt-tab-macos.git
synced 2026-05-24 11:20:36 +00:00
fix: display all windows from android studio
This commit is contained in:
@@ -103,7 +103,7 @@ extension AXUIElement {
|
||||
private static func jetbrainApp(_ runningApp: NSRunningApplication, _ title: String?, _ subrole: String?) -> Bool {
|
||||
// jetbrain apps sometimes generate non-windows that pass all checks in isActualWindow
|
||||
// they have no title, so we can filter them out based on that
|
||||
return runningApp.bundleIdentifier?.range(of: "^com\\.jetbrains\\..+?$", options: .regularExpression) == nil ||
|
||||
return runningApp.bundleIdentifier?.range(of: "^com\\.(jetbrains\\.|google\\.android\\.studio).+?$", options: .regularExpression) == nil ||
|
||||
(subrole == kAXStandardWindowSubrole || title != nil && title != "")
|
||||
}
|
||||
|
||||
|
||||
@@ -31,8 +31,7 @@ class Application: NSObject {
|
||||
if app.bundleIdentifier == "edu.stanford.protege" ||
|
||||
app.bundleIdentifier?.range(of: "^com\\.install4j\\..+?$", options: .regularExpression) != nil ||
|
||||
app.bundleIdentifier?.range(of: "^com\\.live2d\\.cubism\\..+?$", options: .regularExpression) != nil ||
|
||||
app.bundleIdentifier?.range(of: "^com\\.jetbrains\\..+?$", options: .regularExpression) != nil ||
|
||||
app.bundleIdentifier?.range(of: "^com\\.google\\.android\\.studio.*?$", options: .regularExpression) != nil {
|
||||
app.bundleIdentifier?.range(of: "^com\\.(jetbrains\\.|google\\.android\\.studio).+?$", options: .regularExpression) != nil {
|
||||
return n.filter { $0 != kAXFocusedUIElementChangedNotification }
|
||||
}
|
||||
return n
|
||||
|
||||
Reference in New Issue
Block a user