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

* commit 'a15eeacff99650cb9151106438fb61b73d4e749a':
  Fix bug where it wasn't possible to add widgets
This commit is contained in:
Michael Jurka
2012-10-29 14:01:10 -07:00
committed by Android Git Automerger

View File

@ -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];