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

Commit 769e5f0b authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

am 18b5b1f4: am a15eeacf: Merge "Fix bug where it wasn\'t possible to add...

am 18b5b1f4: am a15eeacf: Merge "Fix bug where it wasn\'t possible to add widgets" into jb-mr1-lockscreen-dev

* commit '18b5b1f4':
  Fix bug where it wasn't possible to add widgets
parents a4a15cf6 18b5b1f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1125,7 +1125,7 @@ public class LockPatternUtils {
        if (widgets == null) {
            return false;
        }
        if (index < 0 || index >= widgets.length) {
        if (index < 0 || index > widgets.length) {
            return false;
        }
        int[] newWidgets = new int[widgets.length + 1];