Browse Source

tweak color

B. Petersen 5 years ago
parent
commit
5c87fc2d14
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/Controller/ChatListController.swift

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

@@ -194,7 +194,7 @@ extension ChatListController: UITableViewDataSource, UITableViewDelegate {
         let archive = UITableViewRowAction(style: .destructive, title: String.localized("menu_archive_chat")) { [unowned self] _, _ in
             self.dcContext.archiveChat(chatId: chatId, archive: true)
         }
-        archive.backgroundColor = UIColor.gray
+        archive.backgroundColor = UIColor.lightGray
 
         let delete = UITableViewRowAction(style: .destructive, title: String.localized("menu_delete_chat")) { [unowned self] _, _ in
             self.showDeleteChatConfirmationAlert(chatId: chatId)