summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml
blob: e37f1b263744cd7695223b336b90ce2bd96d7f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Qt 4.6

Rectangle {
    Component { id: TestableCursor
        //Doesn't blink
        Rectangle {
            color:"black"
            width:1
        }
    }
    color: "green"
    width:400;
    height:40;
    TextEdit {
        focus: true;
        cursorDelegate: TestableCursor
        text: "Jackdaws love my big sphinx of Quartz"
    }
}