QGCLabel.qml 387 Bytes
Newer Older
1 2
import QtQuick 2.3
import QtQuick.Controls 1.2
3
import QtQuick.Controls.Styles 1.4
Don Gagne's avatar
Don Gagne committed
4 5

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

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

11
    font.pointSize: ScreenTools.defaultFontPointSize
12
    font.family:    ScreenTools.normalFontFamily
13
    color:          __qgcPal.text
14
    antialiasing:   true
Don Gagne's avatar
Don Gagne committed
15
}