diff options
Diffstat (limited to 'gui/main.qml')
-rw-r--r-- | gui/main.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gui/main.qml b/gui/main.qml index 7469620..7fd38ab 100644 --- a/gui/main.qml +++ b/gui/main.qml @@ -78,9 +78,6 @@ ApplicationWindow { source: "qrc:/roboto-bold.ttf" } - font.family: robotoFont.name - font.weight: Font.Light - Loader { id: loader asynchronous: true @@ -171,5 +168,10 @@ ApplicationWindow { Component.onCompleted: { loader.source = "components/Splash.qml" + if (Qt.platform.os === "osx") { + // XXX workaround for custom font not working in osx + root.font.family = robotoFont.name + root.font.weight = Font.Light + } } } |