Bug 860305 - Catch possible RuntimeException in GeckoInputConnection.restartInput. r=snorp

This commit is contained in:
Dylan Roeh 2015-08-18 08:43:50 -05:00
Родитель 739c94e3c0
Коммит 0c624eac63
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -402,7 +402,11 @@ class GeckoInputConnection
// reasonable, deterministic value
notifySelectionChange(-1, -1);
}
imm.restartInput(v);
try {
imm.restartInput(v);
} catch(RuntimeException e) {
Log.e(LOGTAG, "Error restarting input", e);
}
}
private void resetInputConnection() {