diff options
author | 2014-03-19 13:13:31 +0900 | |
---|---|---|
committer | 2014-03-19 17:43:53 +0900 | |
commit | 4640e7c989e285fd5b805626e6601363078f21d7 (patch) | |
tree | 74e8b2fe8c21c5e8b2f81b1a19ea3fb4d5b38f0d /tests/src | |
parent | e40a52cc6213bd025655d86dae7d4ee6dcd38682 (diff) | |
download | latinime-4640e7c989e285fd5b805626e6601363078f21d7.tar.gz latinime-4640e7c989e285fd5b805626e6601363078f21d7.tar.xz latinime-4640e7c989e285fd5b805626e6601363078f21d7.zip |
Fix French accented letters order
Bug: 13497958
Change-Id: I062a0e2e75b2f6c2606b1309808cbaa83cc91018
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/com/android/inputmethod/keyboard/layout/tests/FrenchCustomizer.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/layout/tests/FrenchCustomizer.java b/tests/src/com/android/inputmethod/keyboard/layout/tests/FrenchCustomizer.java index b10b368e7..ab90267d0 100644 --- a/tests/src/com/android/inputmethod/keyboard/layout/tests/FrenchCustomizer.java +++ b/tests/src/com/android/inputmethod/keyboard/layout/tests/FrenchCustomizer.java @@ -83,6 +83,7 @@ class FrenchCustomizer extends LayoutCustomizer { // U+00E7: "ç" LATIN SMALL LETTER C WITH CEDILLA // U+0107: "ć" LATIN SMALL LETTER C WITH ACUTE // U+010D: "č" LATIN SMALL LETTER C WITH CARON - .setMoreKeysOf("c", "\u00E7", "\u0107", "\u010D"); + .setMoreKeysOf("c", "\u00E7", "\u0107", "\u010D") + .setAdditionalMoreKeysPositionOf("c", 2); } } |