зеркало из https://github.com/mozilla/gecko-dev.git
Bug 860305 - Catch possible RuntimeException in GeckoInputConnection.restartInput. r=snorp
This commit is contained in:
Родитель
739c94e3c0
Коммит
0c624eac63
|
@ -402,7 +402,11 @@ class GeckoInputConnection
|
||||||
// reasonable, deterministic value
|
// reasonable, deterministic value
|
||||||
notifySelectionChange(-1, -1);
|
notifySelectionChange(-1, -1);
|
||||||
}
|
}
|
||||||
imm.restartInput(v);
|
try {
|
||||||
|
imm.restartInput(v);
|
||||||
|
} catch(RuntimeException e) {
|
||||||
|
Log.e(LOGTAG, "Error restarting input", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void resetInputConnection() {
|
private void resetInputConnection() {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче