diff --git a/Xcodes/Frontend/About/AcknowledgementsView.swift b/Xcodes/Frontend/About/AcknowledgementsView.swift index 889deb8..bcc22f7 100644 --- a/Xcodes/Frontend/About/AcknowledgementsView.swift +++ b/Xcodes/Frontend/About/AcknowledgementsView.swift @@ -1,12 +1,14 @@ import SwiftUI struct AcknowledgmentsView: View { + var body: some View { ScrollingTextView( attributedString: NSAttributedString( rtf: try! Data(contentsOf: Bundle.main.url(forResource: "Licenses", withExtension: "rtf")!), documentAttributes: nil )! + .addingAttribute(.foregroundColor, value: NSColor.labelColor) ) .frame(minWidth: 500, minHeight: 500) }