소스 검색

force keeping keyboard on reply btn action (#1710)

cyBerta 2 년 전
부모
커밋
78b6982b87
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      deltachat-ios/Chat/ChatViewController.swift

+ 2 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -255,7 +255,8 @@ class ChatViewController: UITableViewController, UITableViewDropDelegate {
             title: String.localized("notify_reply_button"),
             imageName: "arrowshape.turn.up.left.fill",
             action: #selector(BaseMessageCell.messageReply),
-            onPerform: { indexPath in
+            onPerform: { [weak self] indexPath in
+                self?.keepKeyboard = true
                 DispatchQueue.main.async { [weak self] in
                     self?.replyToMessage(at: indexPath)
                 }