Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ClaudeMeter/Views/MenuBar/UsagePopoverView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ struct UsagePopoverView: View {
}
}) {
if appModel.isRefreshing {
// Use controlSize rather than scaleEffect+frame: combining the latter on
// an AppKit-backed ProgressView produces a SwiftUI runtime constraint
// assertion ("max <= min" failing on equal floats) on macOS.
ProgressView()
.scaleEffect(0.7)
.frame(width: 20, height: 20)
.controlSize(.small)
} else {
Image(systemName: "arrow.clockwise")
}
Expand Down