Added two missing vowels to the conversion system
This commit is contained in:
parent
d866cca9cb
commit
363b374fc8
1 changed files with 5 additions and 0 deletions
|
@ -55,6 +55,11 @@ std::optional<std::string> getIPAForSIL(std::string baseCharacter,
|
|||
if (silModifier == FcitxKey_equal) return "ɒ";
|
||||
}
|
||||
|
||||
if (baseCharacter == "u") {
|
||||
if (silModifier == FcitxKey_greater) return "ʌ";
|
||||
if (silModifier == FcitxKey_less) return "ʊ";
|
||||
}
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue