mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 09:25:33 +00:00
[iOS] #1045 - cherry-pick: Quick (temp?) fix for OSK layout: disable animation
This commit is contained in:
parent
bff538f23f
commit
5b2482300a
2 changed files with 9 additions and 2 deletions
|
|
@ -983,7 +983,11 @@ public class Manager: NSObject, HTTPDownloadDelegate, UIGestureRecognizerDelegat
|
|||
}
|
||||
|
||||
public func dismissKeyboardPicker(_ viewController: UIViewController) {
|
||||
viewController.dismiss(animated: true)
|
||||
// #1045 - Setting animated to false "fixes" the display problems and prevents the crash (on iPad 10.5"
|
||||
// and 12.9"), but it makes the transition less smooth (obviously) and probably isn't the "right"
|
||||
// way to fix the problem. Presumably there is some kind of underlying plumbing issue that is the
|
||||
// true source of the problems.
|
||||
viewController.dismiss(animated: false)
|
||||
if shouldReloadKeyboard {
|
||||
reloadKeyboard(in: keymanWeb)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,8 +4,11 @@
|
|||
* Replaced deprecated calls to UIAlertView and cleaned up extraneous blank buttons (#1002)
|
||||
* Bookmark add button is enabled only when title/url fields have text (#1073)
|
||||
|
||||
## 2018-08-02 10.0.208 stable
|
||||
* Fixed OSK layout problems (and possible crash) on iOS 11 on certain hardware (#1089, #1159)
|
||||
|
||||
## 2018-07-06 10.0.203 stable
|
||||
* Fixes an issue where a keyboard with varying row counts in different layers could crash (#1055)
|
||||
* Fixes an issue where a keyboard with varying row counts in different layers could crash (#1056, #1057)
|
||||
|
||||
## 2018-06-28 10.0.200 stable
|
||||
* 10.0 stable release
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue