소스 검색

force layout update on orientation change - fixes missing cell.update call on orientation change directly after entering a chat

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

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

@@ -313,6 +313,7 @@ class ChatViewController: UITableViewController {
                 if lastSectionVisibleBeforeTransition {
                     DispatchQueue.main.async { [weak self] in
                         self?.scrollToBottom(animated: true)
+                        self?.tableView.reloadData()
                     }
                 }
             }