Skip to content

Commit

Permalink
VLCFavoriteListViewController: Fix the table view's content insets
Browse files Browse the repository at this point in the history
The table view's content insets are now properly setup in order
to avoid any extra padding that is not necessary.
  • Loading branch information
Diogo Simao Marques authored and fkuehne committed Sep 15, 2024
1 parent 8acd14d commit 5c9c894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class VLCFavoriteListViewController: UIViewController {
if #available(iOS 15.0, *) {
tableView.sectionHeaderTopPadding = 0
}
tableView.contentInset = UIEdgeInsets(top: 10, left: 0, bottom: 0, right: 0)
tableView.contentInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)

tableView.delegate = self
tableView.dataSource = self
Expand Down

0 comments on commit 5c9c894

Please sign in to comment.