mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Adjusted low image quality cutoff to work with retina and super retina displays.
This commit is contained in:
@@ -178,7 +178,8 @@ private extension MasterTimelineTableViewCell {
|
||||
func updateAvatar() {
|
||||
|
||||
// The avatar should be bigger than a favicon. They’re too small; they look weird.
|
||||
guard let image = cellData.avatar, cellData.showAvatar, image.size.height >= 22.0, image.size.width >= 22.0 else {
|
||||
let minDimension = 22.0 * RSScreen.mainScreenScale
|
||||
guard let image = cellData.avatar, cellData.showAvatar, image.size.height >= minDimension, image.size.width >= minDimension else {
|
||||
makeAvatarEmpty()
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user