mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am edc49d38: Fix bug to update last interpolated index of GestureStroke
* commit 'edc49d38e6d4c5e1bf5dfe5c30938f2aeb232f2e': Fix bug to update last interpolated index of GestureStroke
This commit is contained in:
commit
cc8733ef71
@ -261,14 +261,14 @@ final class GesturePreviewTrail {
|
|||||||
System.arraycopy(eventTimes, startIndex, eventTimes, 0, newSize);
|
System.arraycopy(eventTimes, startIndex, eventTimes, 0, newSize);
|
||||||
System.arraycopy(xCoords, startIndex, xCoords, 0, newSize);
|
System.arraycopy(xCoords, startIndex, xCoords, 0, newSize);
|
||||||
System.arraycopy(yCoords, startIndex, yCoords, 0, newSize);
|
System.arraycopy(yCoords, startIndex, yCoords, 0, newSize);
|
||||||
// The start index of the last segment of the stroke
|
|
||||||
// {@link mLastInterpolatedDrawIndex} should also be updated because all array
|
|
||||||
// elements have just been shifted for compaction.
|
|
||||||
mLastInterpolatedDrawIndex = Math.max(mLastInterpolatedDrawIndex - startIndex, 0);
|
|
||||||
}
|
}
|
||||||
mEventTimes.setLength(newSize);
|
mEventTimes.setLength(newSize);
|
||||||
mXCoordinates.setLength(newSize);
|
mXCoordinates.setLength(newSize);
|
||||||
mYCoordinates.setLength(newSize);
|
mYCoordinates.setLength(newSize);
|
||||||
|
// The start index of the last segment of the stroke
|
||||||
|
// {@link mLastInterpolatedDrawIndex} should also be updated because all array
|
||||||
|
// elements have just been shifted for compaction or been zeroed.
|
||||||
|
mLastInterpolatedDrawIndex = Math.max(mLastInterpolatedDrawIndex - startIndex, 0);
|
||||||
}
|
}
|
||||||
return newSize > 0;
|
return newSize > 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user