#1309 (theme in story detail view)

- It was already there, just not showing that row.
This commit is contained in:
David Sinclair 2020-05-22 19:33:57 -07:00 committed by Samuel Clay
parent 6d91cf2311
commit 3f4c084f94

View file

@ -271,9 +271,9 @@
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
return 12;
return 13;
} else {
return 11;
return 12;
}
}