summaryrefslogtreecommitdiff
path: root/Sora/Views/Post
diff options
context:
space:
mode:
Diffstat (limited to 'Sora/Views/Post')
-rw-r--r--Sora/Views/Post/PostGridView.swift3
-rw-r--r--Sora/Views/Post/PostView.swift1
2 files changed, 1 insertions, 3 deletions
diff --git a/Sora/Views/Post/PostGridView.swift b/Sora/Views/Post/PostGridView.swift
index 0a1c37b..40d8132 100644
--- a/Sora/Views/Post/PostGridView.swift
+++ b/Sora/Views/Post/PostGridView.swift
@@ -78,9 +78,6 @@ struct PostGridView: View {
.refreshable {
await manager.fetchPosts(page: 1, tags: manager.tags, replace: true)
}
- #if os(iOS)
- .navigationBarTitleDisplayMode(.inline)
- #endif
}
}
}
diff --git a/Sora/Views/Post/PostView.swift b/Sora/Views/Post/PostView.swift
index 111d77e..9c25552 100644
--- a/Sora/Views/Post/PostView.swift
+++ b/Sora/Views/Post/PostView.swift
@@ -32,6 +32,7 @@ struct PostView: View {
}
}
.blur(radius: settings.blurNSFWThumbnails ? post.rating != "s" ? 10 : 0 : 0)
+ .animation(.default, value: settings.blurNSFWThumbnails)
} placeholder: {
ProgressView()
.padding()