mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 01:02:35 +02:00
Add FiraSans-Regular font
This commit is contained in:
parent
51d6d99c73
commit
57fae3fc51
2 changed files with 23 additions and 0 deletions
BIN
interface/resources/fonts/FiraSans-Regular.ttf
Normal file
BIN
interface/resources/fonts/FiraSans-Regular.ttf
Normal file
Binary file not shown.
23
interface/resources/qml/styles-uit/FiraSansRegular.qml
Normal file
23
interface/resources/qml/styles-uit/FiraSansRegular.qml
Normal file
|
@ -0,0 +1,23 @@
|
|||
//
|
||||
// FiraSansRegular.qml
|
||||
//
|
||||
// Created by David Rowe on 12 May 2016
|
||||
// Copyright 2016 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
import QtQuick 2.5
|
||||
import QtQuick.Controls 1.4
|
||||
import QtQuick.Controls.Styles 1.4
|
||||
|
||||
Text {
|
||||
id: root
|
||||
FontLoader { id: firaSansRegular; source: "../../fonts/FiraSans-Regular.ttf"; }
|
||||
property real size: 32
|
||||
font.pixelSize: size
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
font.family: firaSansRegular.name
|
||||
}
|
Loading…
Reference in a new issue