Skip to content

Commit

Permalink
šŸ› Ensure modal windows arenā€™t targeted for screen capture
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed Oct 9, 2024
1 parent b30902d commit 783ff05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public extension UIWindow {
/// that are overlaid on top of the application, when capturing screen layout information.
var isAppcuesWindow: Bool {
if #available(iOS 13.0, *) {
return self is DebugUIWindow
return self is DebugUIWindow || self is ModalContextManager.AppcuesUIWindow
} else {
return false
}
Expand Down

0 comments on commit 783ff05

Please sign in to comment.