Explorar o código

remove superfluous files grouping

we have no grouping currently.
the `.grouped` style only led
to some large gray border atop of the list,
looking a little lost that way.
B. Petersen %!s(int64=2) %!d(string=hai) anos
pai
achega
26983abe26
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      deltachat-ios/Controller/FilesViewController.swift

+ 1 - 1
deltachat-ios/Controller/FilesViewController.swift

@@ -11,7 +11,7 @@ class FilesViewController: UIViewController {
     private let chatId: Int
 
     private lazy var tableView: UITableView = {
-        let table = UITableView(frame: .zero, style: .grouped)
+        let table = UITableView(frame: .zero, style: .plain)
         table.register(DocumentGalleryFileCell.self, forCellReuseIdentifier: DocumentGalleryFileCell.reuseIdentifier)
         table.dataSource = self
         table.delegate = self