From b8f0d3e650f041d92574756e4e105a808d4ae2d5 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