瀏覽代碼

fix lint complaining about line length

cyberta 3 年之前
父節點
當前提交
c54ba440a0
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1078,7 +1078,10 @@ class ChatViewController: UITableViewController {
                 guard let self = self else { return }
                 guard let self = self else { return }
                 let numberOfRows = self.tableView.numberOfRows(inSection: 0)
                 let numberOfRows = self.tableView.numberOfRows(inSection: 0)
                 if numberOfRows > 0 {
                 if numberOfRows > 0 {
-                    self.scrollToRow(at: IndexPath(row: numberOfRows - 1, section: 0), position: .bottom, animated: animated, focusWithVoiceOver: focusOnVoiceOver)
+                    self.scrollToRow(at: IndexPath(row: numberOfRows - 1, section: 0),
+                                     position: .bottom,
+                                     animated: animated,
+                                     focusWithVoiceOver: focusOnVoiceOver)
                 }
                 }
             }
             }
         }
         }