QGCLabel.qml 316 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 9
    QGCPalette { id: __qgcPal; colorGroupEnabled: enabled }

Don Gagne's avatar
Don Gagne committed
10 11
    property bool enabled: true

12 13
    font.pointSize: __qgcPal.dpiAdjustedDefaultFontPointSize
    color:          __qgcPal.text
Don Gagne's avatar
Don Gagne committed
14
}