浏览代码

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

cyberta 5 年之前
父节点
当前提交
f2f1952553
共有 1 个文件被更改,包括 2 次插入0 次删除
  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: