Fix visible circle spacer in menu - use Color.clear instead

This commit is contained in:
Peter Steinberger 2025-06-17 02:59:28 +02:00
parent 179b63f081
commit 0cb2eb8845

View file

@ -95,8 +95,8 @@ struct MenuBarView: View {
// Version (non-interactive) // Version (non-interactive)
HStack { HStack {
Image(systemName: "circle") Color.clear
.opacity(0) // Invisible placeholder to match icon spacing .frame(width: 16, height: 16) // Match the typical SF Symbol size
Text("Version \(appVersion)") Text("Version \(appVersion)")
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }