diff --git a/Tusker/Screens/Status Action Account List/StatusActionAccountListCollectionViewController.swift b/Tusker/Screens/Status Action Account List/StatusActionAccountListCollectionViewController.swift index 4d8e4dc4..dc62d481 100644 --- a/Tusker/Screens/Status Action Account List/StatusActionAccountListCollectionViewController.swift +++ b/Tusker/Screens/Status Action Account List/StatusActionAccountListCollectionViewController.swift @@ -48,6 +48,7 @@ class StatusActionAccountListCollectionViewController: UIViewController, Collect override func loadView() { var accountsConfig = UICollectionLayoutListConfiguration(appearance: .grouped) + accountsConfig.backgroundColor = .appGroupedBackground accountsConfig.itemSeparatorHandler = { [unowned self] indexPath, sectionConfig in guard let item = self.dataSource.itemIdentifier(for: indexPath) else { return sectionConfig @@ -64,6 +65,7 @@ class StatusActionAccountListCollectionViewController: UIViewController, Collect case .status: var config = UICollectionLayoutListConfiguration(appearance: .grouped) config.footerMode = self.showInacurateCountWarning ? .supplementary : .none + config.backgroundColor = .appGroupedBackground config.leadingSwipeActionsConfigurationProvider = { [unowned self] in (collectionView.cellForItem(at: $0) as? TimelineStatusCollectionViewCell)?.leadingSwipeActions() }