summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MobileCydia.mm8
1 files changed, 5 insertions, 3 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index fd4399b..97cc8c1 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -4953,7 +4953,8 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
}
[self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
- [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
+ [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
+
[content_ setNeedsDisplay];
}
@@ -6763,9 +6764,10 @@ freeing the view controllers on tab change */
}
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- if (editing_) return;
+ if (editing_)
+ return;
- Section *section = [self sectionAtIndexPath:indexPath];
+ Section *section = [self sectionAtIndexPath:indexPath];
NSString *name = [section name];
NSString *title;