summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
blob: e19e4187e5daf4b602b15f50906e1b89b47fb225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0
import "../shared" 1.0

TextEdit {
    id: edit
    FontLoader { id: fixedFont; source: "Vera.ttf" }
    font.family: fixedFont.name
    font.pixelSize: 12
    cursorDelegate: Rectangle {
            width: 1;
            color: "black";
            visible: edit.cursorVisible
    }
}