Fix closed group screen title on iPhone 5s

This commit is contained in:
Niels Andriesse 2020-03-02 10:23:34 +11:00
parent aaf991409c
commit de204b3d90
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<key>BuildDetails</key>
<dict>
<key>CarthageVersion</key>
<string>0.33.0</string>
<string>0.34.0</string>
<key>OSXVersion</key>
<string>10.15.3</string>
<key>WebRTCCommit</key>

View File

@ -65,7 +65,8 @@ final class NewClosedGroupVC : UIViewController, UITableViewDataSource, UITableV
let titleLabel = UILabel()
titleLabel.text = NSLocalizedString("New Closed Group", comment: "")
titleLabel.textColor = Colors.text
titleLabel.font = .boldSystemFont(ofSize: Values.veryLargeFontSize)
let titleLabelFontSize = isSmallScreen ? Values.largeFontSize : Values.veryLargeFontSize
titleLabel.font = .boldSystemFont(ofSize: titleLabelFontSize)
navigationItem.titleView = titleLabel
// Set up content
if !contacts.isEmpty {