1
0
Fork 0
flightgear/src/GUI/qml/SettingDescription.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
214 B
QML

import QtQuick 2.4
import "."
Text {
property bool enabled: true
color: enabled ? Style.baseTextColor : Style.disabledTextColor
font.pixelSize: Style.baseFontPixelSize
wrapMode: Text.WordWrap
}