소스 검색

Merge pull request #354 from deltachat/fix_cell_formatting

Fix cell formatting
björn petersen 5 년 전
부모
커밋
18f7725d45
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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: