changed font weight to normal for name in Charts widgets

This commit is contained in:
Serhiy Mytrovtsiy
2019-07-08 20:36:57 +02:00
parent bdf6bd2655
commit fa9d4beebf

View File

@@ -100,7 +100,7 @@ class Chart: NSView, Widget {
let style = NSMutableParagraphStyle()
style.alignment = .center
let stringAttributes = [
NSAttributedString.Key.font: NSFont.systemFont(ofSize: 7.2, weight: .bold),
NSAttributedString.Key.font: NSFont.systemFont(ofSize: 7.2, weight: .regular),
NSAttributedString.Key.foregroundColor: NSColor.labelColor,
NSAttributedString.Key.paragraphStyle: style
]