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)
HStack {
Image(systemName: "circle")
.opacity(0) // Invisible placeholder to match icon spacing
Color.clear
.frame(width: 16, height: 16) // Match the typical SF Symbol size
Text("Version \(appVersion)")
.foregroundColor(.secondary)
}