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/SettingsThumbnailsView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-1d39046178fa9fa3190e0589810e4119bde29ee5.tar.xz sora-testing-1d39046178fa9fa3190e0589810e4119bde29ee5.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings/SettingsThumbnailsView.swift')
| -rw-r--r-- | Sora/Views/Settings/SettingsThumbnailsView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
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) } } |