From 2ef7391d50bf5603dbb4e97db884875ef8b85e24 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Wed, 15 May 2024 01:46:19 +0200 Subject: [PATCH] tune down 'manage keys' and 'autocrypt setup message' --- .../Controller/Settings/AdvancedViewController.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deltachat-ios/Controller/Settings/AdvancedViewController.swift b/deltachat-ios/Controller/Settings/AdvancedViewController.swift index 1e945c4f5..6bee4455e 100644 --- a/deltachat-ios/Controller/Settings/AdvancedViewController.swift +++ b/deltachat-ios/Controller/Settings/AdvancedViewController.swift @@ -56,17 +56,17 @@ internal final class AdvancedViewController: UITableViewController, ProgressAler return cell }() - private lazy var sendAutocryptMessageCell: ActionCell = { - let cell = ActionCell() + private lazy var sendAutocryptMessageCell: UITableViewCell = { + let cell = UITableViewCell(style: .value1, reuseIdentifier: nil) cell.tag = CellTags.sendAutocryptMessage.rawValue - cell.actionTitle = String.localized("autocrypt_send_asm_title") + cell.textLabel?.text = String.localized("autocrypt_send_asm_title") return cell }() - private lazy var manageKeysCell: ActionCell = { - let cell = ActionCell() + private lazy var manageKeysCell: UITableViewCell = { + let cell = UITableViewCell(style: .value1, reuseIdentifier: nil) cell.tag = CellTags.manageKeys.rawValue - cell.actionTitle = String.localized("pref_manage_keys") + cell.textLabel?.text = String.localized("pref_manage_keys") return cell }()