diff options
Diffstat (limited to 'Sora/Views')
| -rw-r--r-- | Sora/Views/Settings/SettingsDetailsView.swift | 2 | ||||
| -rw-r--r-- | Sora/Views/Settings/SettingsThumbnailsView.swift | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/Settings/SettingsDetailsView.swift b/Sora/Views/Settings/SettingsDetailsView.swift index 4ac784c..6b9be8d 100644 --- a/Sora/Views/Settings/SettingsDetailsView.swift +++ b/Sora/Views/Settings/SettingsDetailsView.swift @@ -5,7 +5,7 @@ struct SettingsDetailsView: View { var body: some View { Picker("Detail View Type", selection: $settings.detailViewType) { - ForEach(PostFileType.allCases, id: \.self) { type in + ForEach(BooruPostFileType.allCases, id: \.self) { type in Text(type.rawValue.capitalized).tag(type) } } diff --git a/Sora/Views/Settings/SettingsThumbnailsView.swift b/Sora/Views/Settings/SettingsThumbnailsView.swift index 1f70da6..6503e19 100644 --- a/Sora/Views/Settings/SettingsThumbnailsView.swift +++ b/Sora/Views/Settings/SettingsThumbnailsView.swift @@ -5,7 +5,7 @@ struct SettingsThumbnailsView: View { var body: some View { Picker("Thumbnail Type", selection: $settings.thumbnailType) { - ForEach(PostFileType.allCases, id: \.self) { type in + ForEach(BooruPostFileType.allCases, id: \.self) { type in Text(type.rawValue.capitalized).tag(type) } } |