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

Commit 8db05867 authored by Karl Rosaen's avatar Karl Rosaen Committed by Android Git Automerger
Browse files

am 0e74f5a5: Guard against index out of bounds exception in lock pattern widget.

Merge commit '0e74f5a5'

* commit '0e74f5a5':
  Guard against index out of bounds exception in lock pattern widget.
parents 1c2a8963 0e74f5a5
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -581,14 +581,14 @@ public class LockPatternView extends View {
                    mInProgressX = x;
                    mInProgressY = y;

                    if (mPatternInProgress) {
                    if (mPatternInProgress && patternSize > 0) {
                        final ArrayList<Cell> pattern = mPattern;
                        final float radius = mSquareWidth * mDiameterFactor * 0.5f;

                        Cell cell = pattern.get(patternSize - 1);
                        final Cell lastCell = pattern.get(patternSize - 1);

                        float startX = getCenterXForColumn(cell.column);
                        float startY = getCenterYForRow(cell.row);
                        float startX = getCenterXForColumn(lastCell.column);
                        float startY = getCenterYForRow(lastCell.row);

                        float left;
                        float top;