1
0
Fork 0
flightgear/src/GUI/qml/StyledText.qml
James Turner 01f05b5383 Launcher: styling improvements everywhere
Use a standard text component to ensure the base font size can be
controlled centrally.
2018-06-21 22:54:37 +01:00

12 lines
251 B
QML

import QtQuick 2.4
import "."
Text {
font.pixelSize: Style.baseFontPixelSize
property bool enabled: true
property bool hover: false
color: hover ? Style.themeColor : (root.enabled ? Style.baseTextColor : Style.disabledTextColor)
}