FactTextInput.qml 267 Bytes
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import QtQuick 2.0
import QtQuick.Controls 1.2
import QGroundControl.FactSystem 1.0

TextInput {
    property Fact fact
    text: fact.value
    font.family: "Helvetica"
    font.pointSize: 24
    color: "red"
    focus: true
    onAccepted: { fact.value = text; }
}