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/SettingsSearchView.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/SettingsSearchView.swift')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsSearchView.swift | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Sora/Views/Settings/Section/SettingsSearchView.swift b/Sora/Views/Settings/Section/SettingsSearchView.swift index ee4d09c..5036f72 100644 --- a/Sora/Views/Settings/Section/SettingsSearchView.swift +++ b/Sora/Views/Settings/Section/SettingsSearchView.swift @@ -10,12 +10,15 @@ struct SettingsSearchView: View { #endif var body: some View { - Toggle("Suggest Search Tags", isOn: $settings.searchSuggestions) + Toggle("Suggest Tags", isOn: $settings.searchSuggestions) Button( "Clear Cached Tags (\(manager.cacheSize ?? "Unknown size"))" ) { manager.clearCachedTags() } + #if os(macOS) + .frame(maxWidth: .infinity, alignment: .trailing) + #endif } } |