diff options
Diffstat (limited to 'InstructorEditProfile.ui.qml')
-rw-r--r-- | InstructorEditProfile.ui.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index 5918c18..e58abbf 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -17,6 +17,11 @@ Flickable { } FontLoader { + id: medium + source: "Roboto/Roboto-Medium.ttf" + } + + FontLoader { id: regular source: "Roboto/Roboto-Regular.ttf" } @@ -119,7 +124,8 @@ Flickable { horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter font { - family: doesntEmbed ? "Roboto" : regular.name + family: doesntEmbed ? "Roboto" : medium.name + weight: Font.Medium pointSize: 15 } } |