Added two missing vowels to the conversion system

This commit is contained in:
Yuki Joou 2023-11-13 23:01:04 +01:00
parent d866cca9cb
commit 363b374fc8

View file

@ -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 {};
}