Sfoglia il codice sorgente

bugfix view activity

Marino Faggiana 8 anni fa
parent
commit
729fcc3872

+ 3 - 1
iOSClient/MenuAccount+ControlCenter/CCControlCenterActivity.m

@@ -45,6 +45,8 @@
     
     [super viewDidLoad];
     
+    _verbose = [CCUtility getActivityVerboseHigh];
+    
     _sectionDataSource = [NSArray new];
     
     [self reloadDatasource];
@@ -169,7 +171,7 @@
     
     int heightNote = [[self class] getLabelHeight:label width:self.collectionView.frame.size.width];
     
-    int heightView = 40 + heightAction + heightNote;
+    int heightView = 40 + heightAction + heightNote + 17;
     
     return CGSizeMake(collectionView.frame.size.width, heightView);
 }