Browse Source

handle scrollDownButton visibility in case of scrolling to a message with VoiceOver

cyberta 3 years ago
parent
commit
25d4f7ac32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1134,7 +1134,7 @@ class ChatViewController: UITableViewController {
                 guard let self = self else { return }
                 UIAccessibility.post(notification: .screenChanged, argument: self.tableView.cellForRow(at: indexPath))
                 self.markSeenMessagesInVisibleArea()
-                // TODO: with #1549 merged we can add here scrollDownlButton visibility
+                self.updateScrollDownButtonVisibility()
             })
         } else {
             self.tableView.scrollToRow(at: indexPath, at: .top, animated: animated)