1
0
Fork 0
flightgear/src/GUI/qml/StyledText.qml

13 lines
251 B
QML
Raw Normal View History

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)
}