Set text color in typingAttributes property

This commit is contained in:
Angelo Stavrow 2021-02-08 16:25:25 -05:00
parent 6cc2194b26
commit 4c6eb07846
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -162,7 +162,11 @@ final class CustomTextView: NSView {
textView.usesFindPanel = true
textView.isAutomaticDashSubstitutionEnabled = false
textView.isRichText = false
textView.typingAttributes = [.paragraphStyle: paragraphStyle, .font: font] // H/T Daniel Jalkut
textView.typingAttributes = [
.paragraphStyle: paragraphStyle, // H/T Daniel Jalkut
.font: font,
.foregroundColor: NSColor.labelColor
]
return textView
}()