From 7b95d33612d83732389a67f0a8ba90dc79d8178b Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Fri, 29 May 2020 14:21:57 +1000 Subject: [PATCH] Ensure conversation list bottom content is always reachable --- Signal/src/Loki/View Controllers/HomeVC.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Signal/src/Loki/View Controllers/HomeVC.swift b/Signal/src/Loki/View Controllers/HomeVC.swift index 8a80556eb..3998bde18 100644 --- a/Signal/src/Loki/View Controllers/HomeVC.swift +++ b/Signal/src/Loki/View Controllers/HomeVC.swift @@ -43,6 +43,8 @@ final class HomeVC : BaseVC, UITableViewDataSource, UITableViewDelegate, UIScrol result.backgroundColor = .clear result.separatorStyle = .none result.register(ConversationCell.self, forCellReuseIdentifier: ConversationCell.reuseIdentifier) + let bottomInset = Values.newConversationButtonBottomOffset + Values.newConversationButtonExpandedSize + Values.largeSpacing + Values.newConversationButtonCollapsedSize + result.contentInset = UIEdgeInsets(top: 0, left: 0, bottom: bottomInset, right: 0) return result }()