summaryrefslogtreecommitdiff
path: root/GridCardItem.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'GridCardItem.ui.qml')
-rw-r--r--GridCardItem.ui.qml12
1 files changed, 11 insertions, 1 deletions
diff --git a/GridCardItem.ui.qml b/GridCardItem.ui.qml
index 586ac8c..1ecfd82 100644
--- a/GridCardItem.ui.qml
+++ b/GridCardItem.ui.qml
@@ -83,11 +83,21 @@ Item {
left: parent.left
verticalCenter: parent.verticalCenter
}
+
+ FontLoader {
+ id: roboto
+ name: "Roboto"
+ source: "Roboto-Regular.ttf"
+ }
+
Label {
id: badgeLabel
text: badgeText
color: badgeColor
- font.pixelSize: 13
+ font {
+ family: roboto.name
+ pixelSize: 13
+ }
anchors.centerIn: parent
}
}