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
parent 60b174177f
commit 09a569fdd1

View File

@ -204,7 +204,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
@ -328,6 +328,6 @@ Rectangle
FontMetrics FontMetrics
{ {
id: fontMetrics id: fontMetrics
font: UM.Theme.getFont("medium") font: UM.Theme.getFont("default")
} }
} }