Combining diacritic for accent double aigu

This commit is contained in:
Jules Aguillon 2024-07-13 12:13:25 +02:00
parent 9a44ecf4e2
commit 4c0c1fa13b
3 changed files with 2 additions and 7 deletions

View File

@ -1,10 +1,5 @@
{
"o": "ő",
"u": "ű",
" ": "˝",
"a": "a\u030b",
"e": "e\u030b",
"i": "i\u030b",
"m": "m\u030b",
"y": "y\u030b"
" ": "˝"
}

View File

@ -69,7 +69,7 @@ public final class KeyModifier
case OGONEK: return apply_compose_or_dead_char(k, ComposeKeyData.accent_ogonek, '\u02DB');
case DOT_ABOVE: return apply_compose_or_dead_char(k, ComposeKeyData.accent_dot_above, '\u02D9');
case BREVE: return apply_dead_char(k, '\u02D8');
case DOUBLE_AIGU: return apply_compose(k, ComposeKeyData.accent_double_aigu);
case DOUBLE_AIGU: return apply_diacritics(k, ComposeKeyData.accent_double_aigu, '\0', '\u030b');
case ORDINAL: return apply_compose(k, ComposeKeyData.accent_ordinal);
case SUPERSCRIPT: return apply_compose(k, ComposeKeyData.accent_superscript);
case SUBSCRIPT: return apply_compose(k, ComposeKeyData.accent_subscript);