Skip to content

Commit

Permalink
Merge pull request #8914 from garymathews/TIMOB-24451_6_0_X
Browse files Browse the repository at this point in the history
[6_0_X][TIMOB-24451] Fix Ti.UI.ListView.getSectionCount()
  • Loading branch information
Lokesh Choudhary committed Mar 30, 2017
2 parents cee61d6 + 3e33eea commit cf78c0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public int handleSectionCount () {
if (listView != null) {
return ((TiListView) listView).getSectionCount();
}
return 0;
return preloadSections.size();
}

@Kroll.method
Expand Down

0 comments on commit cf78c0a

Please sign in to comment.