Skip to content

Commit

Permalink
fix: Ghost popup windows in Android Studio (see #1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
AfzalivE authored and lwouis committed Jul 29, 2021
1 parent 46566a4 commit 6b65c41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/logic/Application.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ 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\\.jetbrains\\..+?$", options: .regularExpression) != nil ||
app.bundleIdentifier?.range(of: "^com\\.google\\.android\\.studio.*?$", options: .regularExpression) != nil {
return n.filter { $0 != kAXFocusedUIElementChangedNotification }
}
return n
Expand Down

0 comments on commit 6b65c41

Please sign in to comment.