Browse Source

VLCNetworkLoginDataSourceLogin: Cosmetic: Fix indentation

Edgar Fouillet 5 years ago
parent
commit
4f3dbe1e3e
1 changed files with 6 additions and 6 deletions
  1. 6 6
      Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

+ 6 - 6
Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

@@ -104,13 +104,13 @@ typedef NS_ENUM(NSUInteger, VLCNetworkServerLoginIndex) {
 
     fieldCell.placeholderString = labelString;
     UITextField *textField = fieldCell.textField;
-    textField.autocorrectionType = UITextAutocorrectionTypeNo;
+    textField.autocorrectionType     = UITextAutocorrectionTypeNo;
     textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
-    textField.text              = valueString;
-    textField.keyboardType      = keyboardType;
-    textField.secureTextEntry   = secureTextEntry;
-    textField.returnKeyType     = returnKeyType;
-    textField.tag               = row;
+    textField.text                   = valueString;
+    textField.keyboardType           = keyboardType;
+    textField.secureTextEntry        = secureTextEntry;
+    textField.returnKeyType          = returnKeyType;
+    textField.tag                    = row;
     fieldCell.delegate = self;
 }