Skip to content

Commit

Permalink
fix issue when recreating StaggeredGridView after the activity has be…
Browse files Browse the repository at this point in the history
…en cleared from memory and created again
  • Loading branch information
BenoitDuffez committed Jun 24, 2013
1 parent 3383607 commit 98ad943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/origamilabs/library/views/StaggeredGridView.java
Original file line number Diff line number Diff line change
Expand Up @@ -2106,7 +2106,7 @@ private SavedState(Parcel in) {
super(in);
firstId = in.readLong();
position = in.readInt();
in.readIntArray(topOffsets);
in.createIntArray(topOffsets);
in.readTypedList(mapping, ColMap.CREATOR);

}
Expand Down

0 comments on commit 98ad943

Please sign in to comment.