mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-24 08:37:42 +00:00
Fixes the in-app banner issue.
This commit is contained in:
parent
1576c1a124
commit
20fc5dee5a
1 changed files with 4 additions and 2 deletions
|
|
@ -179,8 +179,10 @@ open class InputViewController: UIInputViewController, KeymanWebDelegate {
|
|||
open override func viewWillDisappear(_ animated: Bool) {
|
||||
super.viewWillDisappear(animated)
|
||||
// Necessary for existing infrastructure to resend info for the keyboard after reloading
|
||||
// as system keyboard.
|
||||
Manager.shared.shouldReloadKeyboard = true
|
||||
// as system keyboard. Do NOT perform if in-app, as this unnecessarily resets the WebView.
|
||||
if(Manager.shared.isSystemKeyboard) {
|
||||
Manager.shared.shouldReloadKeyboard = true
|
||||
}
|
||||
}
|
||||
|
||||
open override func textDidChange(_ textInput: UITextInput?) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue