From 9d22927cb86852cb9c57c51a65b191db4b7ec6dd Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Thu, 20 Feb 2025 15:29:05 +1100 Subject: [PATCH] fix speaker icon --- Session/Calls/CallVC.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Session/Calls/CallVC.swift b/Session/Calls/CallVC.swift index 4d207b471..f9056a619 100644 --- a/Session/Calls/CallVC.swift +++ b/Session/Calls/CallVC.swift @@ -794,8 +794,8 @@ final class CallVC: UIViewController, VideoPreviewDelegate { default: let image = UIImage(named: "Speaker")?.withRenderingMode(.alwaysTemplate) volumeView.setRouteButtonImage(image, for: .normal) - volumeView.themeTintColor = .backgroundSecondary - volumeView.themeBackgroundColor = .textPrimary + volumeView.themeTintColor = .textPrimary + volumeView.themeBackgroundColor = .backgroundPrimary } } }