From c1dd25a77ee012c541af8ede785a3cbea6faa2b2 Mon Sep 17 00:00:00 2001 From: Martín Fdez Date: Thu, 21 Jun 2018 18:29:31 +0200 Subject: remove non-free SF fonts, add Roboto fonts + license --- components/Style.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'components') diff --git a/components/Style.qml b/components/Style.qml index 880a9074..21a27f7c 100644 --- a/components/Style.qml +++ b/components/Style.qml @@ -3,10 +3,10 @@ pragma Singleton import QtQuick 2.5 QtObject { - property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/SFUIDisplay-Medium.otf"; } - property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/SFUIDisplay-Bold.otf"; } - property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/SFUIDisplay-Light.otf"; } - property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/SFUIDisplay-Regular.otf"; } + property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/Roboto-Medium.ttf"; } + property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/Roboto-Bold.ttf"; } + property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/Roboto-Light.ttf"; } + property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/Roboto-Regular.ttf"; } property string grey: "#404040" -- cgit v1.2.3