From 2bc072fe8e66892264a3fc27eeb3cacb6a59ba2c Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Thu, 19 Apr 2018 19:21:35 -0400 Subject: [PATCH] Now that snippet is a bit higher, increase max message cell height // FREEBIE --- Signal/src/ViewControllers/HomeView/HomeViewCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewCell.m b/Signal/src/ViewControllers/HomeView/HomeViewCell.m index 9d5ede7f7..554bd6347 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewCell.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewCell.m @@ -361,7 +361,7 @@ NS_ASSUME_NONNULL_BEGIN CGFloat alpha = CGFloatClamp01(CGFloatInverseLerp(referenceFontSize, kReferenceFontSizeMin, kReferenceFontSizeMax)); const CGFloat kCellHeightMin = 68.f; - const CGFloat kCellHeightMax = 76.f; + const CGFloat kCellHeightMax = 80.f; CGFloat result = ceil(CGFloatLerp(kCellHeightMin, kCellHeightMax, alpha)); return result;