|
|
@@ -698,7 +698,8 @@ private extension ViewController {
|
|
|
.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
|
let fallbackName = Bundle.main.object(forInfoDictionaryKey: "CFBundleName") as? String
|
|
|
let resolvedName = (displayName?.isEmpty == false ? displayName : fallbackName) ?? "AI Companion for Meet"
|
|
|
- splash.configure(appName: resolvedName, appIcon: NSApp.applicationIconImage, theme: makeLaunchSplashTheme())
|
|
|
+ let splashIcon = NSImage(named: "LaunchLogo") ?? NSApp.applicationIconImage
|
|
|
+ splash.configure(appName: resolvedName, appIcon: splashIcon, theme: makeLaunchSplashTheme())
|
|
|
|
|
|
view.addSubview(splash)
|
|
|
NSLayoutConstraint.activate([
|
|
|
@@ -5161,9 +5162,9 @@ private extension ViewController {
|
|
|
let sidebarTopInset: CGFloat = 44
|
|
|
|
|
|
let appIconView = NSImageView()
|
|
|
- if let headerLogo = NSImage(named: "HeaderLogo") {
|
|
|
- headerLogo.isTemplate = false
|
|
|
- appIconView.image = headerLogo
|
|
|
+ if let brandLogo = NSImage(named: "SidebarBrandLogo") {
|
|
|
+ brandLogo.isTemplate = false
|
|
|
+ appIconView.image = brandLogo
|
|
|
} else if let appIconImage = NSApplication.shared.applicationIconImage {
|
|
|
appIconImage.isTemplate = false
|
|
|
appIconView.image = appIconImage
|