marinofaggiana 3 yıl önce
ebeveyn
işleme
305efeaa02
1 değiştirilmiş dosya ile 6 ekleme ve 1 silme
  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