mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-19 16:30:19 +00:00
Fixed AOSP bug in additional keys parsing
This commit is contained in:
parent
1b1dc96a3d
commit
500c8ebd70
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ public final class MoreKeySpec {
|
|||
// Append remained additional more keys to the tail of more keys.
|
||||
out = CollectionUtils.arrayAsList(moreKeys, 0, moreKeysCount);
|
||||
for (int i = additionalIndex; i < additionalCount; i++) {
|
||||
out.add(additionalMoreKeys[additionalIndex]);
|
||||
out.add(additionalMoreKeys[i]);
|
||||
}
|
||||
}
|
||||
if (out == null && moreKeysCount > 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue