diff options
| author | Fuwn <[email protected]> | 2025-02-27 04:01:39 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-27 04:01:39 -0800 |
| commit | e3d08ca76a94d0f5b4ae53eed0bab88e9425769a (patch) | |
| tree | 80a1959d41897a09f2d21c6c1247cb7b5f3f1b37 /Sora/Views/Settings/Section/SettingsDetailsView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-e3d08ca76a94d0f5b4ae53eed0bab88e9425769a.tar.xz sora-testing-e3d08ca76a94d0f5b4ae53eed0bab88e9425769a.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsDetailsView.swift')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsDetailsView.swift | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Sora/Views/Settings/Section/SettingsDetailsView.swift b/Sora/Views/Settings/Section/SettingsDetailsView.swift index 9009eda..d184382 100644 --- a/Sora/Views/Settings/Section/SettingsDetailsView.swift +++ b/Sora/Views/Settings/Section/SettingsDetailsView.swift @@ -4,7 +4,7 @@ struct SettingsDetailsView: View { @EnvironmentObject var settings: Settings var body: some View { - Picker("Detail View Type", selection: $settings.detailViewType) { + Picker("Image Quality", selection: $settings.detailViewQuality) { ForEach(BooruPostFileType.allCases, id: \.self) { type in Text(type.rawValue.capitalized).tag(type) } @@ -15,7 +15,11 @@ struct SettingsDetailsView: View { Toggle("Display Information Bar", isOn: $settings.displayDetailsInformationBar) #if os(macOS) - Toggle("Save Tags to File During Download", isOn: $settings.saveTagsToFile) + Toggle(isOn: $settings.saveTagsToFile) { + Text("Save Tags to File") + + Text("Saves post tags in a file alongside the downloaded image.") + } #endif } } |