From 3b75a96ca796f8265e882a5a4f854f5bee67206e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Sun, 19 Feb 2023 06:50:35 +0800 Subject: Empty font source when not embedding --- InstructorEditProfile.ui.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'InstructorEditProfile.ui.qml') 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 { -- cgit v1.2.3