From 458b8e491ebeba7a04d5eea98ae5b5c7f2e44514 Mon Sep 17 00:00:00 2001 From: June P Date: Tue, 28 Nov 2023 02:34:15 +0900 Subject: [PATCH] bugfix: fix removal of attributes --- AltStore/App IDs/AppIDsViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/App IDs/AppIDsViewController.swift b/AltStore/App IDs/AppIDsViewController.swift index 923b8f3f..8f5ffefc 100644 --- a/AltStore/App IDs/AppIDsViewController.swift +++ b/AltStore/App IDs/AppIDsViewController.swift @@ -213,7 +213,7 @@ extension AppIDsViewController: UICollectionViewDelegateFlowLayout **App IDs can't be deleted**, but they do expire after one week. SideStore will automatically renew App IDs for all active apps once they've expired. """, comment: "") - let attributedText = NSAttributedString(markdownRepresentation: text) + let attributedText = NSAttributedString(markdownRepresentation: text, attributes: [.font: headerView.textLabel.font as Any]) headerView.textLabel.attributedText = attributedText } else