diff options
-rw-r--r-- | InstructorEditProfile.ui.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index 44b4d78..c7aea10 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -13,17 +13,17 @@ Flickable { FontLoader { id: bold - source: "Roboto/Roboto-Bold.ttf" + source: doesntEmbed ? "" : "Roboto/Roboto-Bold.ttf" } FontLoader { id: medium - source: "Roboto/Roboto-Medium.ttf" + source: doesntEmbed ? "" : "Roboto/Roboto-Medium.ttf" } FontLoader { id: regular - source: "Roboto/Roboto-Regular.ttf" + source: doesntEmbed ? "" : "Roboto/Roboto-Regular.ttf" } ColumnLayout { |