Skip to content

Commit

Permalink
Merge pull request #8862 from garymathews/TIMOB-24451
Browse files Browse the repository at this point in the history
[TIMOB-24451] Android: Fix Ti.UI.ListView.getSectionCount()
  • Loading branch information
ssjsamir committed Mar 14, 2017
2 parents ef48708 + 6341fd3 commit 7db952e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public int handleSectionCount () {
if (listView != null) {
return ((TiListView) listView).getSectionCount();
}
return 0;
return preloadSections.size();
}

@Kroll.method
Expand Down

0 comments on commit 7db952e

Please sign in to comment.