QGCLabel.qml 383 Bytes
Newer Older
1 2
import QtQuick                  2.12
import QtQuick.Controls         2.12
Don Gagne's avatar
Don Gagne committed
3

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

Text {
8
    font.pointSize: ScreenTools.defaultFontPointSize
9
    font.family:    ScreenTools.normalFontFamily
10
    color:          qgcPal.text
11
    antialiasing:   true
12 13

    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
Don Gagne's avatar
Don Gagne committed
14
}