mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Fix a bug throwing IndexOutOfBoundsException when IME receives completions more than MAX_SUGGESTIONS in full-screen mode."
This commit is contained in:
commit
8aaca66928
@ -219,7 +219,7 @@ public class CandidateView extends View {
|
||||
mDivider.getIntrinsicHeight());
|
||||
}
|
||||
int x = 0;
|
||||
final int count = mSuggestions.size();
|
||||
final int count = Math.min(mSuggestions.size(), MAX_SUGGESTIONS);
|
||||
final int width = getWidth();
|
||||
final Rect bgPadding = mBgPadding;
|
||||
final Paint paint = mPaint;
|
||||
@ -335,7 +335,7 @@ public class CandidateView extends View {
|
||||
|
||||
public void scrollPrev() {
|
||||
int i = 0;
|
||||
final int count = mSuggestions.size();
|
||||
final int count = Math.min(mSuggestions.size(), MAX_SUGGESTIONS);
|
||||
int firstItem = 0; // Actually just before the first item, if at the boundary
|
||||
while (i < count) {
|
||||
if (mWordX[i] < getScrollX()
|
||||
@ -354,7 +354,7 @@ public class CandidateView extends View {
|
||||
int i = 0;
|
||||
int scrollX = getScrollX();
|
||||
int targetX = scrollX;
|
||||
final int count = mSuggestions.size();
|
||||
final int count = Math.min(mSuggestions.size(), MAX_SUGGESTIONS);
|
||||
int rightEdge = scrollX + getWidth();
|
||||
while (i < count) {
|
||||
if (mWordX[i] <= rightEdge &&
|
||||
|
Loading…
Reference in New Issue
Block a user