From dc8f6ed2483f0e241dd5b90c15a9e2c1c5ad96d9 Mon Sep 17 00:00:00 2001 From: Louis Pontoise Date: Mon, 15 Feb 2021 19:13:45 +0900 Subject: [PATCH] fix: issues with the app mediathekview (closes #822) --- src/logic/Application.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/src/logic/Application.swift b/src/logic/Application.swift index 976fa2320..d638ab575 100644 --- a/src/logic/Application.swift +++ b/src/logic/Application.swift @@ -27,6 +27,7 @@ class Application: NSObject { // workaround: some apps exhibit bugs when we subscribe to its kAXFocusedUIElementChangedNotification // we don't know what's happening; we avoid this subscription to make these app usable if app.bundleIdentifier == "edu.stanford.protege" || + app.bundleIdentifier == "com.install4j.2884-1958-5872-3865.59" || // MediathekView app.bundleIdentifier?.range(of: "^com\\.live2d\\.cubism\\..+?$", options: .regularExpression) != nil || app.bundleIdentifier?.range(of: "^com\\.jetbrains\\..+?$", options: .regularExpression) != nil { return n.filter { $0 != kAXFocusedUIElementChangedNotification }