overte-JulianGro/launchers/qt/resources/qml/HFControls/HFTextRegular.qml
2019-10-17 15:06:43 -07:00

18 lines
329 B
QML

import QtQuick 2.3
import QtQuick 2.1
Text {
id: root
font.family: "Graphik Regular"
font.pixelSize: 14
color: "#C4C4C4"
linkColor: color
MouseArea {
anchors.fill: root
cursorShape: root.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
acceptedButtons: Qt.NoButton
}
}