diff options
Diffstat (limited to 'Sora/Views/Settings')
| -rw-r--r-- | Sora/Views/Settings/SettingsProviderView.swift (renamed from Sora/Views/Settings/SettingsSourceView.swift) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Views/Settings/SettingsSourceView.swift b/Sora/Views/Settings/SettingsProviderView.swift index d1f8f30..0829497 100644 --- a/Sora/Views/Settings/SettingsSourceView.swift +++ b/Sora/Views/Settings/SettingsProviderView.swift @@ -1,12 +1,12 @@ import SwiftUI -struct SettingsSourceView: View { +struct SettingsProviderView: View { @EnvironmentObject var settings: Settings var body: some View { - Picker("Booru", selection: $settings.preferredBooru) { + Picker("Provider", selection: $settings.preferredBooru) { ForEach(BooruProvider.allCases, id: \.self) { type in - Text(type.rawValue.capitalized).tag(type) + Text(type.formatted()).tag(type) } } } |