ソースを参照

fix scrolling of the chat when the inputbar size increses

cyberta 4 年 前
コミット
46aadf79a3
1 ファイル変更1 行追加1 行削除
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1605,7 +1605,7 @@ extension ChatViewController: InputBarAccessoryViewDelegate {
                                                    bottom: size.height + messageInputBar.keyboardHeight,
                                                    right: 0)
         if isLastRowVisible() && !tableView.isDragging && !tableView.isDecelerating  && highlightedMsg == nil && !ignoreInputBarChange {
-            self.scrollToBottom(animated: true)
+            self.tableView.setContentOffset(CGPoint(x: 0, y: tableView.contentSize.height), animated: true)
         }
     }
 }