From 363b374fc84b9b8d471438e35cf6c0de433b01c7 Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Mon, 13 Nov 2023 23:01:04 +0100 Subject: [PATCH] Added two missing vowels to the conversion system --- src/ipa-sil.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ipa-sil.cpp b/src/ipa-sil.cpp index b1c2752..fb2ef6a 100644 --- a/src/ipa-sil.cpp +++ b/src/ipa-sil.cpp @@ -55,6 +55,11 @@ std::optional getIPAForSIL(std::string baseCharacter, if (silModifier == FcitxKey_equal) return "ɒ"; } + if (baseCharacter == "u") { + if (silModifier == FcitxKey_greater) return "ʌ"; + if (silModifier == FcitxKey_less) return "ʊ"; + } + return {}; }