Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c93e513 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix off by one bug in gesture trail drawing

Bug: 7594165
Change-Id: Ia3f7dcee71db91e39c40022b19e7b07c5d4488c8
parent 2b6a1fed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ final class GesturePreviewTrail {
            float r1 = maxWidth / 2.0f;
            // Initialize bounds rectangle.
            outBoundsRect.set(p1x, p1y, p1x, p1y);
            for (int i = startIndex + 1; i < trailSize - 1; i++) {
            for (int i = startIndex + 1; i < trailSize; i++) {
                final int elapsedTime = sinceDown - eventTimes[i];
                final int p2x = getXCoordValue(xCoords[i]);
                final int p2y = yCoords[i];