소스 검색

set background color of deaddrop contentView explicitly

B. Petersen 5 년 전
부모
커밋
3186c1d085
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      deltachat-ios/Controller/ChatListController.swift

+ 2 - 1
deltachat-ios/Controller/ChatListController.swift

@@ -272,7 +272,8 @@ extension ChatListController: UITableViewDataSource, UITableViewDelegate {
         } else {
             deaddropCell = ContactCell(style: .default, reuseIdentifier: "DeaddropCell")
         }
-        deaddropCell.backgroundColor = DcColors.deaddropBackground // TODO: why is the color not changed in darkmode?
+        deaddropCell.backgroundColor = DcColors.deaddropBackground
+        deaddropCell.contentView.backgroundColor = DcColors.deaddropBackground
         return deaddropCell
     }