QGCLabel.qml 256 Bytes
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

import QGroundControl.Palette 1.0

Text {
8
    property var __palette: QGCPalette { colorGroupEnabled: enabled }
Don Gagne's avatar
Don Gagne committed
9 10
    property bool enabled: true

11
    color: __palette.text
Don Gagne's avatar
Don Gagne committed
12
}