Peter Steinberger 2025-12-20 14:22:08 +00:00
commit b6c11154ae
1 changed files with 3 additions and 1 deletions

View File

@ -260,7 +260,9 @@ private struct HoverHUDView: View {
}
private var dotColor: Color {
if self.activityStore.iconState.isWorking { return .green }
if self.activityStore.iconState.isWorking {
return Color(nsColor: NSColor.systemGreen.withAlphaComponent(0.7))
}
return .secondary
}