We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9e4d0 commit 3142590Copy full SHA for 3142590
src/logic/events/AccessibilityEvents.swift
@@ -94,11 +94,14 @@ class AccessibilityEvents {
94
return
95
}
96
Logger.debug { "\(type) win:\(window.debugId)" }
97
+ if findOrCreate.1 {
98
+ App.app.refreshOpenUiAfterExternalEvent([window])
99
+ }
100
if type == kAXMainWindowChangedNotification || type == kAXFocusedWindowChangedNotification {
101
focusedWindowChanged(window)
102
} else if type == kAXWindowResizedNotification || type == kAXWindowMovedNotification {
103
windowResizedOrMoved(window)
- } else {
104
+ } else if !findOrCreate.1 {
105
App.app.refreshOpenUiAfterExternalEvent([window])
106
107
0 commit comments