diff options
| author | Fuwn <[email protected]> | 2026-03-24 07:52:49 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-24 07:52:49 +0000 |
| commit | cfaca120dd330653b8746e03ba701def4e3f5216 (patch) | |
| tree | 4caba0da97cfbd62de57b1f8fb461283694e7c6d /Sora/Views/Settings/Section/SettingsSectionSearchView.swift | |
| parent | test: fix verify with Nimble and simulator boot (diff) | |
| download | sora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.tar.xz sora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.zip | |
Refine settings language and structure
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsSectionSearchView.swift')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsSectionSearchView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/Settings/Section/SettingsSectionSearchView.swift b/Sora/Views/Settings/Section/SettingsSectionSearchView.swift index 6249c4a..b702cd4 100644 --- a/Sora/Views/Settings/Section/SettingsSectionSearchView.swift +++ b/Sora/Views/Settings/Section/SettingsSectionSearchView.swift @@ -4,13 +4,13 @@ struct SettingsSectionSearchView: View { @EnvironmentObject var settings: SettingsManager var body: some View { - Picker("Suggestion Mode", selection: $settings.searchSuggestionsMode) { + Picker("Suggestions", selection: $settings.searchSuggestionsMode) { ForEach(SettingsSearchSuggestionsMode.allCases, id: \.self) { type in Text(type.rawValue.capitalized).tag(type) } } - Button("Clear History") { + Button("Clear Search History") { settings.searchHistory.removeAll() } .trailingFrame() |