diff options
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 21605e6..c6e06f5 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -145,7 +145,7 @@ struct PostGridView: View { private func waterfallGridContent(post: BooruPost) -> some View { Button { - manager.selectedPost = post + if !manager.isLoading { manager.selectedPost = post } } label: { PostGridThumbnailView(post: post, posts: filteredPosts) } |