mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 15:17:40 +00:00
Merge pull request #7156 from keymanapp/fix/android/longpress-backspace
fix(android/engine): Fix Backspace key to delete without errant subkeys
This commit is contained in:
commit
bad8806c27
1 changed files with 3 additions and 1 deletions
|
|
@ -372,8 +372,10 @@ final class KMKeyboard extends WebView {
|
|||
|
||||
public void dismissSubKeysWindow() {
|
||||
try {
|
||||
if (subKeysWindow != null && subKeysWindow.isShowing())
|
||||
if (subKeysWindow != null && subKeysWindow.isShowing()) {
|
||||
subKeysWindow.dismiss();
|
||||
}
|
||||
subKeysList = null;
|
||||
} catch (Exception e) {
|
||||
KMLog.LogException(TAG, "", e);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue