Skip to content
QGCLabel.qml 420 B
Newer Older
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
Don Gagne's avatar
Don Gagne committed

import QGroundControl.Palette 1.0
import QGroundControl.ScreenTools 1.0
Don Gagne's avatar
Don Gagne committed

Text {
    QGCPalette { id: __qgcPal; colorGroupEnabled: enabled }

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

dogmaphobic's avatar
dogmaphobic committed
    font.pointSize: ScreenTools.defaultFontPointSize
    font.family:    ScreenTools.normalFontFamily
    color:          __qgcPal.text
    antialiasing:   true
Don Gagne's avatar
Don Gagne committed
}