diff options
Diffstat (limited to 'Hotline/macOS/TrackerView.swift')
| -rw-r--r-- | Hotline/macOS/TrackerView.swift | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/Hotline/macOS/TrackerView.swift b/Hotline/macOS/TrackerView.swift index ae653b8..251248f 100644 --- a/Hotline/macOS/TrackerView.swift +++ b/Hotline/macOS/TrackerView.swift @@ -755,19 +755,18 @@ struct TrackerItemView: View { if isExpanded && count > 0 { HStack(spacing: 4) { Text(String(count)) - - Image(systemName: "globe.americas.fill") - .resizable() - .scaledToFit() + + SpinningGlobeView() + .fontWeight(.semibold) .frame(width: 12, height: 12) - .opacity(0.5) +// .opacity(0.5) } - - .padding(.horizontal, 8) - .padding(.vertical, 2) - .foregroundStyle(.secondary) - .background(.quinary) - .clipShape(.capsule) + + .padding(.horizontal, 8) + .padding(.vertical, 2) + .foregroundStyle(.secondary) + .background(.quinary) + .clipShape(.capsule) } case .server: Image(systemName: "bookmark.fill") |