Fix link color in aboutViewController

This commit is contained in:
yicheng 2019-10-29 21:25:13 +08:00
parent e9413b8573
commit c03746c0e7

View File

@ -58,11 +58,8 @@ class HyperlinkTextField: NSTextField {
override func awakeFromNib() {
super.awakeFromNib()
// TODO: Fix this and get the hover click to work.
let attributes: [NSAttributedString.Key: Any] = [
NSAttributedString.Key.foregroundColor: NSColor.blue,
NSAttributedString.Key.foregroundColor: NSColor.linkColor,
NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue as AnyObject,
]
attributedStringValue = NSAttributedString(string: stringValue, attributes: attributes)