From 49c9c69b5a52b2e9728073cf1292aa25c9426dea Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 28 Jan 2023 22:59:30 -0500 Subject: [PATCH] Fix flicker when opening status action account list in split nav The container VC background needs to match the content VC --- .../StatusActionAccountListViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Status Action Account List/StatusActionAccountListViewController.swift b/Tusker/Screens/Status Action Account List/StatusActionAccountListViewController.swift index eeab6247..e101082b 100644 --- a/Tusker/Screens/Status Action Account List/StatusActionAccountListViewController.swift +++ b/Tusker/Screens/Status Action Account List/StatusActionAccountListViewController.swift @@ -87,7 +87,7 @@ class StatusActionAccountListViewController: UIViewController { title = NSLocalizedString("Reblogged By", comment: "status reblogged by accounts list title") } - view.backgroundColor = .secondarySystemBackground + view.backgroundColor = .systemBackground NotificationCenter.default.addObserver(self, selector: #selector(handleStatusDeleted), name: .statusDeleted, object: nil) }