Skip to content

Commit

Permalink
fixbug #1564
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadCym committed Sep 19, 2017
1 parent 2385c22 commit 9376211
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,8 @@ public int expandAll(int position, boolean init) {
}

public void expandAll() {
for (int i = mData.size() - 1; i >= getHeaderLayoutCount(); i--) {

for (int i = mData.size() - 1 + getHeaderLayoutCount(); i >= getHeaderLayoutCount(); i--) {
expandAll(i, false, false);
}
}
Expand Down

0 comments on commit 9376211

Please sign in to comment.