Merge branch 'bugfix/navigation_bar_label_button_font' into 'develop'

font update

See merge request BPHV_MIPS/mvm_core_ui!562
This commit is contained in:
Pfeil, Scott Robert 2020-08-13 15:26:57 -04:00
commit a4f5e2d8d5

View File

@ -18,6 +18,7 @@ import Foundation
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], for: .normal)
return button
}