Change fonts to default

No idea why they were medium, but the design clearly shows that it should be the default font
This commit is contained in:
Jaime van Kessel 2021-11-26 14:14:43 +01:00 committed by Jelle Spijker
parent a59307e10d
commit 34911380d2
No known key found for this signature in database
GPG Key ID: 6662DC033BE6B99A

View File

@ -205,7 +205,7 @@ Rectangle
property real lastLineWidth: 0; //Store the width of the last line, to properly position the elision. property real lastLineWidth: 0; //Store the width of the last line, to properly position the elision.
text: packageData.description text: packageData.description
font: UM.Theme.getFont("medium") font: UM.Theme.getFont("default")
color: UM.Theme.getColor("text") color: UM.Theme.getColor("text")
maximumLineCount: 2 maximumLineCount: 2
wrapMode: Text.Wrap wrapMode: Text.Wrap
@ -330,6 +330,6 @@ Rectangle
FontMetrics FontMetrics
{ {
id: fontMetrics id: fontMetrics
font: UM.Theme.getFont("medium") font: UM.Theme.getFont("default")
} }
} }