Skip to content

Commit

Permalink
Fix scroll bar in places picker
Browse files Browse the repository at this point in the history
Summary: Changed the scroll bar from sorting by section when there is only one section

Test Plan: Ran unit tests, PlacePicker/FriendPicker/Scrumptious samples

Reviewers: jacl, clang, mmarucheck, gregschechte

Reviewed By: mmarucheck

CC: platform-diffs@lists, bhiller

Differential Revision: https://phabricator.fb.com/D541501

Task ID: 1235919
  • Loading branch information
aydenw committed Aug 7, 2012
1 parent 4fb0802 commit d183511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FBGraphObjectTableDataSource.m
Expand Up @@ -418,7 +418,7 @@ - (NSInteger)tableView:(UITableView *)tableView

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return self.indexKeys;
return [self.indexKeys count] > 1 ? self.indexKeys : nil;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
Expand Down

0 comments on commit d183511

Please sign in to comment.