Procházet zdrojové kódy

re-enable contact editing

Alla Reinsch před 7 roky
rodič
revize
b61846af5f
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      deltachat-ios/NewChatViewController.swift

+ 3 - 1
deltachat-ios/NewChatViewController.swift

@@ -17,7 +17,7 @@ class NewChatViewController: UITableViewController {
     weak var chatDisplayer: ChatDisplayer?
 
     override func viewDidLoad() {
-        super.viewDidLoad()
+        //super.viewDidLoad()
 
         title = "New Chat"
         navigationController?.navigationBar.prefersLargeTitles = true
@@ -98,6 +98,8 @@ class NewChatViewController: UITableViewController {
         cell.initialsLabel.text = Utils.getInitials(inputName: contact.name)
         let contactColor = Utils.color(row: contactRow, colors: Constants.chatColors)
         cell.setColor(contactColor)
+        
+        cell.accessoryType = .detailDisclosureButton
         return cell
     }