Explorar o código

set background color of deaddrop contentView explicitly

B. Petersen %!s(int64=5) %!d(string=hai) anos
pai
achega
3186c1d085
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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
     }