Skip to content

Commit 85d2d57

Browse files
authored
ui: fix About tagline truncation and use Alpha label (#37)
- Increase Settings window height from 480 to 520 to fit two-line tagline - Add fixedSize to prevent tagline text from truncating - Change version label from MVP to Alpha
1 parent d6ad62c commit 85d2d57

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Sources/VocaMac/Views/SettingsView.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct SettingsView: View {
2929
Label("About", systemImage: "info.circle")
3030
}
3131
}
32-
.frame(width: 560, height: 480)
32+
.frame(width: 560, height: 520)
3333
}
3434
}
3535

@@ -630,8 +630,9 @@ struct AboutTab: View {
630630
.font(.subheadline)
631631
.foregroundStyle(.secondary)
632632
.multilineTextAlignment(.center)
633+
.fixedSize(horizontal: false, vertical: true)
633634

634-
Text("Version 0.1.0 (MVP)")
635+
Text("Version 0.1.0 (Alpha)")
635636
.font(.caption)
636637
.foregroundStyle(.tertiary)
637638

0 commit comments

Comments
 (0)