marinofaggiana 3 gadi atpakaļ
vecāks
revīzija
305efeaa02
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  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