From 7956a643cb1fe5e4beebe26052da950a6ab61fe7 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Thu, 23 May 2024 12:00:28 -0400 Subject: [PATCH] Digital ACT191 defect CXTDT-561854 - Update font of navigation bar label button to BoldBodySmall --- .../Molecules/NavigationBar/Buttons/LabelBarButtonItem.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Molecules/NavigationBar/Buttons/LabelBarButtonItem.swift b/MVMCoreUI/Atomic/Molecules/NavigationBar/Buttons/LabelBarButtonItem.swift index 1eb4c8a1..5a99d670 100644 --- a/MVMCoreUI/Atomic/Molecules/NavigationBar/Buttons/LabelBarButtonItem.swift +++ b/MVMCoreUI/Atomic/Molecules/NavigationBar/Buttons/LabelBarButtonItem.swift @@ -16,7 +16,7 @@ let actionObject = ActionDelegate() let button = self.init(title: title, style: .plain, target: actionObject, action: #selector(actionObject.callActionBlock(_:))) button.actionDelegate = actionObject - button.setTitleTextAttributes([NSAttributedString.Key.font: Styler.Font.RegularBodySmall.getFont()], for: .normal) + button.setTitleTextAttributes([NSAttributedString.Key.font: Styler.Font.BoldBodySmall.getFont()], for: .normal) return button }