Keep table view text color consistent
This commit is contained in:
parent
b84f2dce13
commit
17ccf55c48
3 changed files with 0 additions and 5 deletions
|
|
@ -65,12 +65,10 @@ class PGPKeyArmorImportTableViewController: AutoCellHeightUITableViewController,
|
||||||
super.viewDidLoad()
|
super.viewDidLoad()
|
||||||
|
|
||||||
scanPublicKeyCell?.textLabel?.text = "ScanPublicKeyQrCodes".localize()
|
scanPublicKeyCell?.textLabel?.text = "ScanPublicKeyQrCodes".localize()
|
||||||
scanPublicKeyCell?.textLabel?.textColor = Colors.systemBlue
|
|
||||||
scanPublicKeyCell?.selectionStyle = .default
|
scanPublicKeyCell?.selectionStyle = .default
|
||||||
scanPublicKeyCell?.accessoryType = .disclosureIndicator
|
scanPublicKeyCell?.accessoryType = .disclosureIndicator
|
||||||
|
|
||||||
scanPrivateKeyCell?.textLabel?.text = "ScanPrivateKeyQrCodes".localize()
|
scanPrivateKeyCell?.textLabel?.text = "ScanPrivateKeyQrCodes".localize()
|
||||||
scanPrivateKeyCell?.textLabel?.textColor = Colors.systemBlue
|
|
||||||
scanPrivateKeyCell?.selectionStyle = .default
|
scanPrivateKeyCell?.selectionStyle = .default
|
||||||
scanPrivateKeyCell?.accessoryType = .disclosureIndicator
|
scanPrivateKeyCell?.accessoryType = .disclosureIndicator
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -79,13 +79,11 @@ class PasswordEditorTableViewController: UITableViewController {
|
||||||
|
|
||||||
scanQRCodeCell = UITableViewCell(style: .default, reuseIdentifier: "default")
|
scanQRCodeCell = UITableViewCell(style: .default, reuseIdentifier: "default")
|
||||||
scanQRCodeCell?.textLabel?.text = "AddOneTimePassword".localize()
|
scanQRCodeCell?.textLabel?.text = "AddOneTimePassword".localize()
|
||||||
scanQRCodeCell?.textLabel?.textColor = Colors.systemBlue
|
|
||||||
scanQRCodeCell?.selectionStyle = .default
|
scanQRCodeCell?.selectionStyle = .default
|
||||||
scanQRCodeCell?.accessoryType = .disclosureIndicator
|
scanQRCodeCell?.accessoryType = .disclosureIndicator
|
||||||
|
|
||||||
passwordFlavorCell = UITableViewCell(style: .value1, reuseIdentifier: "default")
|
passwordFlavorCell = UITableViewCell(style: .value1, reuseIdentifier: "default")
|
||||||
passwordFlavorCell?.textLabel?.text = "PasswordGeneratorFlavor".localize()
|
passwordFlavorCell?.textLabel?.text = "PasswordGeneratorFlavor".localize()
|
||||||
passwordFlavorCell?.textLabel?.textColor = Colors.systemBlue
|
|
||||||
passwordFlavorCell?.selectionStyle = .none
|
passwordFlavorCell?.selectionStyle = .none
|
||||||
passwordFlavorCell?.accessoryType = .disclosureIndicator
|
passwordFlavorCell?.accessoryType = .disclosureIndicator
|
||||||
passwordFlavorCell?.detailTextLabel?.text = passwordGenerator.flavor.localized
|
passwordFlavorCell?.detailTextLabel?.text = passwordGenerator.flavor.localized
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,6 @@ class SSHKeyArmorImportTableViewController: AutoCellHeightUITableViewController,
|
||||||
armorPrivateKeyTextView.delegate = self
|
armorPrivateKeyTextView.delegate = self
|
||||||
|
|
||||||
scanPrivateKeyCell?.textLabel?.text = "ScanPrivateKeyQrCodes".localize()
|
scanPrivateKeyCell?.textLabel?.text = "ScanPrivateKeyQrCodes".localize()
|
||||||
scanPrivateKeyCell?.textLabel?.textColor = Colors.systemBlue
|
|
||||||
scanPrivateKeyCell?.selectionStyle = .default
|
scanPrivateKeyCell?.selectionStyle = .default
|
||||||
scanPrivateKeyCell?.accessoryType = .disclosureIndicator
|
scanPrivateKeyCell?.accessoryType = .disclosureIndicator
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue