Browse Source

fix hidden message input bar

cyberta 4 years ago
parent
commit
2d2ff67e71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/Chat/ChatViewControllerNew.swift

+ 1 - 1
deltachat-ios/Chat/ChatViewControllerNew.swift

@@ -129,7 +129,6 @@ class ChatViewControllerNew: UITableViewController {
         if !disableWriting {
             configureMessageInputBar()
             messageInputBar.inputTextView.text = textDraft
-            self.tableView.becomeFirstResponder()
         }
 
 
@@ -166,6 +165,7 @@ class ChatViewControllerNew: UITableViewController {
 
     override func viewWillAppear(_ animated: Bool) {
         super.viewWillAppear(animated)
+        self.tableView.becomeFirstResponder()
         // this will be removed in viewWillDisappear
         navigationController?.navigationBar.addGestureRecognizer(navBarTap)