diff options
| author | Dustin Mierau <dustin@mierau.me> | 2025-10-27 11:03:49 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2025-10-27 11:03:49 -0700 |
| commit | 5924204ab2956d3947ca19c07585b81173226a4f (patch) | |
| tree | 68e2aa644f54bd5acfc02894e1f7f44f7da184e7 /Hotline/macOS/TrackerView.swift | |
| parent | 2b278f662326b44d86d84ae3e11ff0b770757f45 (diff) | |
Add spinning globe to TrackerView. Continue cleanup of NetSocketNew.
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") |