Only show large thumbnails in most recent

This commit is contained in:
Christoph Hagen 2022-12-17 08:26:12 +01:00
parent 3d361845ab
commit 7c68d02169

View File

@ -374,6 +374,9 @@ extension Element {
} }
func mostRecentElements(_ count: Int) -> [Element] { func mostRecentElements(_ count: Int) -> [Element] {
guard self.thumbnailStyle == .large else {
return []
}
guard self.containsElements else { guard self.containsElements else {
return [self] return [self]
} }