|
|
@@ -152,10 +152,9 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate {
|
|
|
private func configureStatusItem() {
|
|
|
let item = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)
|
|
|
if let button = item.button {
|
|
|
- let symbolConfig = NSImage.SymbolConfiguration(pointSize: 14, weight: .semibold)
|
|
|
- if let base = NSImage(systemSymbolName: "video.fill", accessibilityDescription: "Companion AI for Zoom"),
|
|
|
- let image = base.withSymbolConfiguration(symbolConfig) {
|
|
|
- image.isTemplate = true
|
|
|
+ if let image = NSImage(named: "StatusBarIcon") {
|
|
|
+ image.size = NSSize(width: 18, height: 18)
|
|
|
+ image.isTemplate = false
|
|
|
button.image = image
|
|
|
button.imagePosition = .imageOnly
|
|
|
button.toolTip = "Companion AI for Zoom"
|