Browse Source

Merge pull request #354 from deltachat/fix_cell_formatting

Fix cell formatting
björn petersen 5 years ago
parent
commit
18f7725d45
1 changed files with 2 additions and 0 deletions
  1. 2 0
      deltachat-ios/Controller/GroupChatDetailViewController.swift

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

@@ -171,12 +171,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: