From e5e16587eed098a60b3d2309bf5e2d8261795f59 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Tue, 19 Aug 2025 08:38:15 +0200 Subject: [PATCH] - AcknowledgementsTableViewController: explicitly specify text color to fix #1483 ((non-)visibility of license texts in dark mode) --- ownCloud/Settings/AcknowledgementsTableViewController.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ownCloud/Settings/AcknowledgementsTableViewController.swift b/ownCloud/Settings/AcknowledgementsTableViewController.swift index 90a520b7b..18cf9aa28 100644 --- a/ownCloud/Settings/AcknowledgementsTableViewController.swift +++ b/ownCloud/Settings/AcknowledgementsTableViewController.swift @@ -39,7 +39,8 @@ class AcknowledgementsTableViewController: StaticTableViewController { let textViewController = TextViewController() let licenseText : NSMutableAttributedString = NSMutableAttributedString() let textAttributes : [NSAttributedString.Key : Any] = [ - .font : UIFont.systemFont(ofSize: UIFont.systemFontSize) + .font : UIFont.systemFont(ofSize: UIFont.systemFontSize), + .foregroundColor : UIColor.label ] textViewController.title = "\(licenseTitle) \(OCLocalizedString("license", nil))"