Add missing qml files

This commit is contained in:
Dale Glass 2022-08-07 18:20:06 +02:00
parent 065293ea36
commit 0066dfc2e8
3 changed files with 31 additions and 9 deletions

View file

@ -0,0 +1,21 @@
//
// FiraSansMedium.qml
//
// Created by Dale Glass on 7 Aug 2022
// Copyright 2022 Overte e.V.
//
// 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.7
Text {
id: root
property real size: 32
font.pixelSize: size
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignLeft
font.family: "Fira Sans"
font.weight: Font.Medium
}

View file

@ -1,14 +1,14 @@
//
// FiraSansRegular.qml
// FiraSansMedium.qml
//
// Created by David Rowe on 12 May 2016
// Copyright 2016 High Fidelity, Inc.
// Created by Dale Glass on 7 Aug 2022
// Copyright 2022 Overte e.V.
//
// 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 2.7
Text {
id: root

View file

@ -1,14 +1,14 @@
//
// FiraSansSemiBold.qml
// FiraSansMedium.qml
//
// Created by David Rowe on 12 Feb 2016
// Copyright 2016 High Fidelity, Inc.
// Created by Dale Glass on 7 Aug 2022
// Copyright 2022 Overte e.V.
//
// 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 2.7
Text {
id: root
@ -16,5 +16,6 @@ Text {
font.pixelSize: size
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignLeft
font.family: "Fira Sans SemiBold"
font.family: "Fira Sans"
font.weight: Font.DemiBold
}