From b8b8419fdb014ab78f3ae7644594d410fbb31836 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Mon, 16 Sep 2024 13:25:30 +1000 Subject: [PATCH] minor fix on the tool bar theme and bump up build number --- Session.xcodeproj/project.pbxproj | 4 ++-- SessionUIKit/Style Guide/ThemeManager.swift | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index a5d3be3d3..82dda5b50 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -7797,7 +7797,7 @@ CODE_SIGN_ENTITLEMENTS = Session/Meta/Signal.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 489; + CURRENT_PROJECT_VERSION = 490; DEVELOPMENT_TEAM = SUQ8J2PCT7; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -7869,7 +7869,7 @@ CODE_SIGN_ENTITLEMENTS = Session/Meta/Signal.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 489; + CURRENT_PROJECT_VERSION = 490; DEVELOPMENT_TEAM = SUQ8J2PCT7; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", diff --git a/SessionUIKit/Style Guide/ThemeManager.swift b/SessionUIKit/Style Guide/ThemeManager.swift index e6b775303..4278a2926 100644 --- a/SessionUIKit/Style Guide/ThemeManager.swift +++ b/SessionUIKit/Style Guide/ThemeManager.swift @@ -150,6 +150,12 @@ public enum ThemeManager { ThemeManager.mainWindow?.tintColor = textPrimary ThemeManager.mainWindow?.rootViewController?.setNeedsStatusBarAppearanceUpdate() + // Update toolbars to use the right colours + UIToolbar.appearance().barTintColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) + UIToolbar.appearance().isTranslucent = false + UIToolbar.appearance().tintColor = textPrimary + + // Update the nav bars to use the right colours let appearance = UINavigationBarAppearance() appearance.configureWithOpaqueBackground() appearance.backgroundColor = ThemeManager.currentTheme.color(for: .backgroundPrimary)