update font paths

This commit is contained in:
erinn 2020-05-19 14:39:07 -07:00
parent 3c6f3fd9bf
commit 2788144bf6
1 changed files with 4 additions and 4 deletions

View File

@ -6,22 +6,22 @@ QtObject {
property FontLoader applicationFontBold: FontLoader {
id: opensansBold
source: "qrc:/qml/fonts/opensans/OpenSans-Bold.ttf"
source: "qrc:/qml/opaque/fonts/opensans/OpenSans-Bold.ttf"
}
property FontLoader applicationFontExtrBold: FontLoader {
id: opensansExtraBold
source: "qrc:/qml/fonts/opensans/OpenSans-ExtraBold.ttf"
source: "qrc:/qml/opaque/fonts/opensans/OpenSans-ExtraBold.ttf"
}
property FontLoader applicationFontRegular: FontLoader {
id: opensansRegular
source: "qrc:/qml/fonts/opensans/OpenSans-Regular.ttf"
source: "qrc:/qml/opaque/fonts/opensans/OpenSans-Regular.ttf"
}
property FontLoader applicationFontLight: FontLoader {
id: opensansLight
source: "qrc:/qml/fonts/opensans/OpenSans-Light.ttf"
source: "qrc:/qml/opaque/fonts/opensans/OpenSans-Light.ttf"
}
}