Преглед изворни кода

show quoted message at tableview's top position

cyberta пре 4 година
родитељ
комит
68d8e255d2
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1075,7 +1075,7 @@ extension ChatViewController: BaseMessageCellDelegate {
         if let quoteMsg = msg.quoteMessage,
            let index = messageIds.firstIndex(of: quoteMsg.id) {
             let indexPath = IndexPath(row: index, section: 0)
-            tableView.scrollToRow(at: indexPath, at: .middle, animated: true)
+            tableView.scrollToRow(at: indexPath, at: .top, animated: true)
         }
     }