Browse Source

fix cell formatting in group chat detail view (#180)

cyberta 5 years ago
parent
commit
f2f1952553
1 changed files with 2 additions and 0 deletions
  1. 2 0
      deltachat-ios/Controller/GroupChatDetailViewController.swift

+ 2 - 0
deltachat-ios/Controller/GroupChatDetailViewController.swift

@@ -168,12 +168,14 @@ extension GroupChatDetailViewController: UITableViewDelegate, UITableViewDataSou
                 let cell = tableView.dequeueReusableCell(withIdentifier: "actionCell", for: indexPath)
                 if let actionCell = cell as? ActionCell {
                     actionCell.actionTitle = String.localized("group_add_members")
+                    actionCell.actionColor = UIColor.systemBlue
                 }
                 return cell
             case sectionMembersRowJoinQR:
                 let cell = tableView.dequeueReusableCell(withIdentifier: "actionCell", for: indexPath)
                 if let actionCell = cell as? ActionCell {
                     actionCell.actionTitle = String.localized("qrshow_join_group_title")
+                    actionCell.actionColor = UIColor.systemBlue
                 }
                 return cell
             default: