diff --git a/src/api-wrappers/AXUIElement.swift b/src/api-wrappers/AXUIElement.swift index d5715383b..b89396114 100644 --- a/src/api-wrappers/AXUIElement.swift +++ b/src/api-wrappers/AXUIElement.swift @@ -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\\.|google\\.android\\.studio).+?$", options: .regularExpression) == nil || + return runningApp.bundleIdentifier?.range(of: "^com\\.(jetbrains\\.|google\\.android\\.studio).*?$", options: .regularExpression) == nil || (subrole == kAXStandardWindowSubrole || title != nil && title != "") } diff --git a/src/logic/Application.swift b/src/logic/Application.swift index 17d4404fe..486cab080 100644 --- a/src/logic/Application.swift +++ b/src/logic/Application.swift @@ -31,7 +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\\.|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