From 07658b88939bc228364ea8335db4101b043143a0 Mon Sep 17 00:00:00 2001
From: Morgan Pretty <morgan.t.pretty@gmail.com>
Date: Wed, 16 Mar 2022 11:41:30 +1100
Subject: [PATCH] Changed the labels on the conversation menu items to be bold

---
 Session/Home/NewConversationButtonSet.swift | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Session/Home/NewConversationButtonSet.swift b/Session/Home/NewConversationButtonSet.swift
index d0a82def5..b1f933479 100644
--- a/Session/Home/NewConversationButtonSet.swift
+++ b/Session/Home/NewConversationButtonSet.swift
@@ -25,7 +25,7 @@ final class NewConversationButtonSet : UIView {
     private lazy var newDMLabel: UILabel = {
         let result: UILabel = UILabel()
         result.translatesAutoresizingMaskIntoConstraints = false
-        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize)
+        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize, weight: .bold)
         result.text = NSLocalizedString("NEW_CONVERSATION_MENU_DIRECT_MESSAGE", comment: "").uppercased()
         result.textColor = Colors.grey
         result.textAlignment = .center
@@ -36,7 +36,7 @@ final class NewConversationButtonSet : UIView {
     private lazy var createClosedGroupLabel: UILabel = {
         let result: UILabel = UILabel()
         result.translatesAutoresizingMaskIntoConstraints = false
-        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize)
+        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize, weight: .bold)
         result.text = NSLocalizedString("NEW_CONVERSATION_MENU_CLOSED_GROUP", comment: "").uppercased()
         result.textColor = Colors.grey
         result.textAlignment = .center
@@ -47,7 +47,7 @@ final class NewConversationButtonSet : UIView {
     private lazy var joinOpenGroupLabel: UILabel = {
         let result: UILabel = UILabel()
         result.translatesAutoresizingMaskIntoConstraints = false
-        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize)
+        result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize, weight: .bold)
         result.text = NSLocalizedString("NEW_CONVERSATION_MENU_OPEN_GROUP", comment: "").uppercased()
         result.textColor = Colors.grey
         result.textAlignment = .center