diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-19 06:50:35 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-19 06:50:35 +0800 |
commit | 3b75a96ca796f8265e882a5a4f854f5bee67206e (patch) | |
tree | 5f4d9be3a341a8e46c81e923b53ce365113daa6f | |
parent | d73926331e294a54981718d0e4593cff94c9012a (diff) |
Empty font source when not embedding
-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 { |