summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsSectionSearchView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-24 07:52:49 +0000
committerFuwn <[email protected]>2026-03-24 07:52:49 +0000
commitcfaca120dd330653b8746e03ba701def4e3f5216 (patch)
tree4caba0da97cfbd62de57b1f8fb461283694e7c6d /Sora/Views/Settings/Section/SettingsSectionSearchView.swift
parenttest: fix verify with Nimble and simulator boot (diff)
downloadsora-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.swift4
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()