aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput/data/qtbug-19956double.qml
blob: e9b80fceb2651d3d4b1d0134deef012bba77f270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

TextInput {
    id: textinput
    property real topvalue: 30
    property real bottomvalue: 10
    height: 50
    width: 200
    text: "20"
    validator: DoubleValidator {
        id: doublevalidator
        bottom: bottomvalue
        top: topvalue
    }
}