Skip to content

Commit b155e7d

Browse files
committed
Make font properties public
1 parent cdb2814 commit b155e7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Aztec/Classes/TextKit/FontProvider.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class FontProvider {
99

1010
static var shared = FontProvider()
1111

12-
lazy var monospaceFont: UIFont = {
12+
public lazy var monospaceFont: UIFont = {
1313
let baseFont = UIFont(descriptor:UIFontDescriptor(name: "Menlo", size: 14), size:14)
1414
let font: UIFont
1515
if #available(iOS 11.0, *) {
@@ -20,7 +20,7 @@ public class FontProvider {
2020
return font
2121
}()
2222

23-
lazy var defaultFont: UIFont = {
23+
public lazy var defaultFont: UIFont = {
2424
let baseFont = UIFont.systemFont(ofSize: 14)
2525
let font: UIFont
2626
if #available(iOS 11.0, *) {

0 commit comments

Comments
 (0)