-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: screen events and autocapture should ignore keyboard window (#269)
* fix: screen events and autocapture should ignore keyboard window * chore: update CHANGELOG * fix: remove development team * fix: format * fix: address feedback
- Loading branch information
Showing
5 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// UIWindow+.swift | ||
// PostHog | ||
// | ||
// Created by Yiannis Josephides on 03/12/2024. | ||
// | ||
|
||
#if os(iOS) || os(tvOS) | ||
import Foundation | ||
import UIKit | ||
|
||
extension UIWindow { | ||
var isKeyboardWindow: Bool { | ||
String(describing: type(of: window)) == "UIRemoteKeyboardWindow" | ||
} | ||
} | ||
#endif |