From 92824a28e1d90a2798532367e23f7de1665a4c46 Mon Sep 17 00:00:00 2001 From: Patrick Balestra Date: Tue, 14 Nov 2017 08:21:41 +0100 Subject: [PATCH] Change dynamic size of title from headline to title2 --- WhatsNew/Items/WhatsNewItem.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WhatsNew/Items/WhatsNewItem.swift b/WhatsNew/Items/WhatsNewItem.swift index 31a9ab7..8268b28 100644 --- a/WhatsNew/Items/WhatsNewItem.swift +++ b/WhatsNew/Items/WhatsNewItem.swift @@ -32,7 +32,7 @@ public extension WhatsNewItemCustomizable { } // Use dynamic font size based on user preference if we're on > iOS 10. if #available(iOS 10, *) { - titleLabel.font = UIFont.preferredFont(forTextStyle: .headline) + titleLabel.font = UIFont.preferredFont(forTextStyle: .title2) subtitleLabel.font = UIFont.preferredFont(forTextStyle: .body) } else { titleLabel.font = UIFont.systemFont(ofSize: 20, weight: .bold)