From cac623b509127640e2bcaceb2532c68782edc295 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 30 Nov 2021 10:49:49 +0100 Subject: [PATCH] Use medium font size for extended description The design appears more balanced then, quoth the designer of the layout. Contributes to issue CURA-8565. --- plugins/Marketplace/resources/qml/PackageCard.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml index 9f0dda920c..bb43f926b6 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -394,7 +394,7 @@ Rectangle width: parent.width - parent.padding * 2 text: catalog.i18nc("@header", "Description") - font: UM.Theme.getFont("default_bold") + font: UM.Theme.getFont("medium_bold") color: UM.Theme.getColor("text") elide: Text.ElideRight } @@ -404,7 +404,7 @@ Rectangle width: parent.width - parent.padding * 2 text: packageData.formattedDescription - font: UM.Theme.getFont("default") + font: UM.Theme.getFont("medium") color: UM.Theme.getColor("text") linkColor: UM.Theme.getColor("text_link") wrapMode: Text.Wrap