Add Russian vowels combined with the acute accent

This commit is contained in:
Jules Aguillon 2024-01-21 19:47:03 +01:00
parent ad7314a016
commit 5beacf32b7

View File

@ -518,6 +518,8 @@ public final class KeyModifier
case 'y': return "ý";
// Combining diacritic
case 'j':
// Russian vowels
case 'у': case 'е': case 'а': case 'о': case 'и':
return c + "\u0301";
default: return map_dead_char(c, '\u00B4');
}