diff options
author | 2014-03-19 03:42:26 -0700 | |
---|---|---|
committer | 2014-03-19 03:42:26 -0700 | |
commit | c01271ab5a187f5544c3ec644abf5d1081f1e0cf (patch) | |
tree | 36bdb6d7aa3b3cf3766f9765e439918b9be9e03b /tests/src | |
parent | 569da9620ff41e5f1df58515e931d0a65e1c42d1 (diff) | |
parent | 682853c3afef3d56b594bde46ff68f77eb4b811e (diff) | |
download | latinime-c01271ab5a187f5544c3ec644abf5d1081f1e0cf.tar.gz latinime-c01271ab5a187f5544c3ec644abf5d1081f1e0cf.tar.xz latinime-c01271ab5a187f5544c3ec644abf5d1081f1e0cf.zip |
am 682853c3: Merge "Fix French accented letters order"
* commit '682853c3afef3d56b594bde46ff68f77eb4b811e':
Fix French accented letters order
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); } } |