From cd5cf18b6cb780ee05e19eb97a889218d9095d45 Mon Sep 17 00:00:00 2001 From: JanNiklas Grabowski Date: Mon, 10 Jul 2023 17:08:37 +0200 Subject: [PATCH] MESSENGER-4883 add color changes and manual app store upload for beta --- Riot/Modules/Home/AllChats/AllChatsViewController.swift | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Riot/Modules/Home/AllChats/AllChatsViewController.swift b/Riot/Modules/Home/AllChats/AllChatsViewController.swift index 214713901..1c728b76d 100644 --- a/Riot/Modules/Home/AllChats/AllChatsViewController.swift +++ b/Riot/Modules/Home/AllChats/AllChatsViewController.swift @@ -137,8 +137,13 @@ class AllChatsViewController: HomeViewController { emptyViewBottomAnchor = toolbar.topAnchor // bwi: 4179 - toolbar.tintColor = ThemeService.shared().theme.tintColor - toolbar.barTintColor = ThemeService.shared().theme.backgroundColor + + if BWIBuildSettings.shared.useNewBumColors { // bwi: #4883 + toolbar.tintColor = ThemeService.shared().theme.tintColor + toolbar.barTintColor = ThemeService.shared().theme.backgroundColor + } else { + toolbar.tintColor = theme.colors.accent + } updateUI()