Forráskód Böngészése

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 2 éve
szülő
commit
26983abe26

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

@@ -11,7 +11,7 @@ class FilesViewController: UIViewController {
     private let chatId: Int
     private let chatId: Int
 
 
     private lazy var tableView: UITableView = {
     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.register(DocumentGalleryFileCell.self, forCellReuseIdentifier: DocumentGalleryFileCell.reuseIdentifier)
         table.dataSource = self
         table.dataSource = self
         table.delegate = self
         table.delegate = self