diff options
| author | Fuwn <[email protected]> | 2025-02-20 19:36:05 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-20 19:36:05 -0800 |
| commit | 1d39046178fa9fa3190e0589810e4119bde29ee5 (patch) | |
| tree | 2e281f3899ac2c4523c7ca28cf88c42c2465b917 /Sora/Views/Settings | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-1d39046178fa9fa3190e0589810e4119bde29ee5.tar.xz sora-testing-1d39046178fa9fa3190e0589810e4119bde29ee5.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings')
| -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) } } |