diff options
| author | Fuwn <[email protected]> | 2025-06-16 03:35:01 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-16 03:35:01 -0700 |
| commit | d0b624bff068f5f8e159398e567a97f11aa67c23 (patch) | |
| tree | 3953ad5d6f4def499402139ed2fbca85a8e955d5 | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-d0b624bff068f5f8e159398e567a97f11aa67c23.tar.xz sora-testing-d0b624bff068f5f8e159398e567a97f11aa67c23.zip | |
feat: Development commit
| -rw-r--r-- | Localizable.xcstrings | 6 | ||||
| -rw-r--r-- | Sora/Views/Post/Details/PostDetailsTagsView.swift | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Localizable.xcstrings b/Localizable.xcstrings index 015859a..590727c 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -130,9 +130,6 @@ "Domain" : { }, - "Eager Thumbnail Loading" : { - - }, "Enable \"Share Image\" Shortcut" : { }, @@ -169,6 +166,9 @@ "Keep bookmarks, search history, and providers consistent across all your devices." : { }, + "Lazy Thumbnail Loading" : { + + }, "Loading %@…" : { }, diff --git a/Sora/Views/Post/Details/PostDetailsTagsView.swift b/Sora/Views/Post/Details/PostDetailsTagsView.swift index 8ff4a9f..087f003 100644 --- a/Sora/Views/Post/Details/PostDetailsTagsView.swift +++ b/Sora/Views/Post/Details/PostDetailsTagsView.swift @@ -53,11 +53,11 @@ struct PostDetailsTagsView: View { private func search() { manager.selectedPost = nil + isPresented.toggle() + Task(priority: .userInitiated) { await manager.performSearch(settings: settings) } - - isPresented.toggle() } } |