From 2f1f53968595eb0bb7cb6b01b2bf73869d75f9ed Mon Sep 17 00:00:00 2001 From: Vincent <0426vincent@gmail.com> Date: Tue, 24 Feb 2026 12:34:39 -0800 Subject: [PATCH] fix: change private to internal for properties accessed from AppDelegate extension connectionStatusCancellable, pulseTimer, and pulsePhase are accessed from AppDelegate+MenuBar.swift, which is a separate file. Private restricts access to the declaring file, so these need internal access. Co-Authored-By: Claude Opus 4.6 --- clients/macos/vellum-assistant/App/AppDelegate.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/macos/vellum-assistant/App/AppDelegate.swift b/clients/macos/vellum-assistant/App/AppDelegate.swift index 5ac70ce8a1b..62d2ba2a30c 100644 --- a/clients/macos/vellum-assistant/App/AppDelegate.swift +++ b/clients/macos/vellum-assistant/App/AppDelegate.swift @@ -114,9 +114,9 @@ public final class AppDelegate: NSObject, NSApplicationDelegate { private var quickChatShortcutObserver: AnyCancellable? private weak var recordingViewModel: ChatViewModel? private var statusIconCancellable: AnyCancellable? - private var connectionStatusCancellable: AnyCancellable? - private var pulseTimer: Timer? - private var pulsePhase: CGFloat = 1.0 + var connectionStatusCancellable: AnyCancellable? + var pulseTimer: Timer? + var pulsePhase: CGFloat = 1.0 var cachedSkills: [SkillInfo] = [] var refreshSkillsTask: Task? var cachedApps: [AppItem] = []