diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-13 21:19:42 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-13 21:19:42 +0800 |
commit | 747c92ad7e197036e926350acf2a17f7076a3c72 (patch) | |
tree | eb0759bb0a430a8bcd23bb83c460f0a0a2e5c206 | |
parent | ac9411f3a2ee6ff4d7e3c13ae605c393407eb5d3 (diff) |
Revert "FontLoader with source doesn't need the name set"
This reverts commit ac9411f3a2ee6ff4d7e3c13ae605c393407eb5d3.
-rw-r--r-- | CardGrid.ui.qml | 1 | ||||
-rw-r--r-- | Counter.ui.qml | 2 | ||||
-rw-r--r-- | Header.qml | 1 | ||||
-rw-r--r-- | SignIn.ui.qml | 1 | ||||
-rw-r--r-- | SignUp.ui.qml | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/CardGrid.ui.qml b/CardGrid.ui.qml index 1f87668..90ef11d 100644 --- a/CardGrid.ui.qml +++ b/CardGrid.ui.qml @@ -98,6 +98,7 @@ Item { FontLoader { id: roboto + name: "Roboto" source: doesntEmbed ? "" : "Roboto/Roboto-Regular.ttf" } diff --git a/Counter.ui.qml b/Counter.ui.qml index e6e7318..cc979d2 100644 --- a/Counter.ui.qml +++ b/Counter.ui.qml @@ -38,6 +38,7 @@ Item { ColumnLayout { FontLoader { id: bold + name: "Heebo" source: "Heebo/Heebo-Bold.ttf" } @@ -51,6 +52,7 @@ Item { FontLoader { id: medium + name: "Heebo" source: "Heebo/Heebo-Bold.ttf" } @@ -20,6 +20,7 @@ ToolBar { FontLoader { id: roboto + name: "Roboto" source: doesntEmbed ? "" : "Roboto/Roboto-Medium.ttf" } diff --git a/SignIn.ui.qml b/SignIn.ui.qml index 61e8b6b..bff46de 100644 --- a/SignIn.ui.qml +++ b/SignIn.ui.qml @@ -11,6 +11,7 @@ Flickable { FontLoader { id: heebo + name: "Heebo" source: "Heebo/Heebo-Bold.ttf" } diff --git a/SignUp.ui.qml b/SignUp.ui.qml index 1df7b1a..c0afebe 100644 --- a/SignUp.ui.qml +++ b/SignUp.ui.qml @@ -12,6 +12,7 @@ Flickable { FontLoader { id: heebo + name: "Heebo" source: "Heebo/Heebo-Bold.ttf" } |