From 09a569fdd1fa416367d47f7b68eb2bc7443b149f Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 26 Nov 2021 14:14:43 +0100 Subject: [PATCH] Change fonts to default No idea why they were medium, but the design clearly shows that it should be the default font --- 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 63909ef049..e80b352978 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -204,7 +204,7 @@ Rectangle property real lastLineWidth: 0; //Store the width of the last line, to properly position the elision. text: packageData.description - font: UM.Theme.getFont("medium") + font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") maximumLineCount: 2 wrapMode: Text.Wrap @@ -328,6 +328,6 @@ Rectangle FontMetrics { id: fontMetrics - font: UM.Theme.getFont("medium") + font: UM.Theme.getFont("default") } }