diff options
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 8842b13..b8a174b 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5664,7 +5664,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain]; [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; - [list_ setRowHeight:73.0f]; + [list_ setRowHeight:73]; [self addSubview:list_]; [list_ setDataSource:self]; @@ -7533,7 +7533,7 @@ freeing the view controllers on tab change */ list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain]; [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; - [list_ setRowHeight:73.0f]; + [list_ setRowHeight:73]; [[self view] addSubview:list_]; [list_ setDataSource:self]; |