Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0846b734 authored by Vasyl Gello's avatar Vasyl Gello Committed by Michael Bestas
Browse files

LatinIME: Set proper keyboard for Georgian script



Fixes the runtime exception 'Wrong script supplied: 5'

Change-Id: Id4f244f7e229532998e846a8d41749d90f7913bd
Signed-Off-By: default avatarVasyl Gello <vasek.gello@gmail.com>
parent 0f125fda
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -121,6 +121,8 @@ public final class AndroidSpellCheckerService extends SpellCheckerService
            return "hebrew";
            return "hebrew";
        case ScriptUtils.SCRIPT_BULGARIAN:
        case ScriptUtils.SCRIPT_BULGARIAN:
            return "bulgarian";
            return "bulgarian";
        case ScriptUtils.SCRIPT_GEORGIAN:
            return "georgian";
        default:
        default:
            throw new RuntimeException("Wrong script supplied: " + script);
            throw new RuntimeException("Wrong script supplied: " + script);
        }
        }