소스 검색

tweak color

B. Petersen 5 년 전
부모
커밋
5c87fc2d14
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)