Эх сурвалжийг харах

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

cyberta 5 жил өмнө
parent
commit
f2f1952553

+ 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: