Skip to content

Commit

Permalink
use .default style for buttons having no values
Browse files Browse the repository at this point in the history
  • Loading branch information
r10s committed May 15, 2024
1 parent 19d77a8 commit 0745c72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ internal final class AdvancedViewController: UITableViewController, ProgressAler
}()

private lazy var sendAutocryptMessageCell: UITableViewCell = {
let cell = UITableViewCell(style: .value1, reuseIdentifier: nil)
let cell = UITableViewCell(style: .default, reuseIdentifier: nil)
cell.tag = CellTags.sendAutocryptMessage.rawValue
cell.textLabel?.text = String.localized("autocrypt_send_asm_title")
return cell
}()

private lazy var manageKeysCell: UITableViewCell = {
let cell = UITableViewCell(style: .value1, reuseIdentifier: nil)
let cell = UITableViewCell(style: .default, reuseIdentifier: nil)
cell.tag = CellTags.manageKeys.rawValue
cell.textLabel?.text = String.localized("pref_manage_keys")
return cell
Expand Down

0 comments on commit 0745c72

Please sign in to comment.