From 17a4b40fd7e1ededf5529813c6ed53e2fbcb45cc Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Mon, 12 Apr 2021 12:37:57 +0200 Subject: [PATCH] Change the font size to default in the changelog So that it is consistent with the What's new pages CURA-8154 --- resources/qml/WelcomePages/ChangelogContent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/WelcomePages/ChangelogContent.qml b/resources/qml/WelcomePages/ChangelogContent.qml index 9e290dcf54..d106f94c04 100644 --- a/resources/qml/WelcomePages/ChangelogContent.qml +++ b/resources/qml/WelcomePages/ChangelogContent.qml @@ -44,7 +44,7 @@ Item textArea.textFormat: Text.RichText textArea.wrapMode: Text.WordWrap textArea.readOnly: true - textArea.font: UM.Theme.getFont("medium") + textArea.font: UM.Theme.getFont("default") textArea.onLinkActivated: Qt.openUrlExternally(link) }