File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -109,12 +109,12 @@ extension NFXFont
109109 }
110110
111111#elseif os(OSX)
112- class func NFXFont( size: CGFloat ) -> NSFont
112+ class func NFXFont( _ size: CGFloat ) -> NSFont
113113 {
114114 return NSFont ( name: " HelveticaNeue " , size: size) !
115115 }
116116
117- class func NFXFontBold( size: CGFloat ) -> NSFont
117+ class func NFXFontBold( _ size: CGFloat ) -> NSFont
118118 {
119119 return NSFont ( name: " HelveticaNeue-Bold " , size: size) !
120120 }
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ class NFXListCell_OSX: NSTableCellView
3333 self . circleView. layer? . cornerRadius = 4
3434 self . circleView. alphaValue = 0.2
3535
36- self . requestTimeLabel. font = NSFont . NFXFontBold ( size : 13 )
37- self . timeIntervalLabel. font = NSFont . NFXFont ( size : 12 )
38- self . URLLabel. font = NSFont . NFXFont ( size : 12 )
39- self . methodLabel. font = NSFont . NFXFont ( size : 12 )
40- self . typeLabel. font = NSFont . NFXFont ( size : 12 )
36+ self . requestTimeLabel. font = NSFont . NFXFontBold ( 13 )
37+ self . timeIntervalLabel. font = NSFont . NFXFont ( 12 )
38+ self . URLLabel. font = NSFont . NFXFont ( 12 )
39+ self . methodLabel. font = NSFont . NFXFont ( 12 )
40+ self . typeLabel. font = NSFont . NFXFont ( 12 )
4141
4242 }
4343
You can’t perform that action at this time.
0 commit comments