More localization fixes

This commit is contained in:
Arkadiusz Fal
2022-09-27 15:22:40 +02:00
parent c86e9d95d1
commit 7573b0321c
4 changed files with 11 additions and 18 deletions

View File

@@ -209,7 +209,7 @@ struct PlayerSettings: View {
}
private var fullScreenPlayerControlsLayoutPicker: some View {
Picker("Fullscreen Size", selection: $fullScreenPlayerControlsLayout) {
Picker("Fullscreen size", selection: $fullScreenPlayerControlsLayout) {
ForEach(PlayerControlsLayout.allCases.filter(\.available), id: \.self) { layout in
Text(layout.description).tag(layout.rawValue)
}