marinofaggiana 3 jaren geleden
bovenliggende
commit
305efeaa02
1 gewijzigde bestanden met toevoegingen van 6 en 1 verwijderingen
  1. 6 1
      iOSClient/Settings/CCAdvanced.m

+ 6 - 1
iOSClient/Settings/CCAdvanced.m

@@ -451,7 +451,12 @@
 #pragma mark -
 
 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-    return NCGlobal.shared.heightCellSettings;
+    
+    if (indexPath.section == 7 && indexPath.row == 2) {
+        return 80;
+    } else {
+        return NCGlobal.shared.heightCellSettings;
+    }
 }
 
 @end