aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/qtbug-38947.qml
blob: ebf8080e69000c2547be057877e3d75716592435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Item {
    height: 200
    width: 200
    TextEdit {
        objectName: "textedit"
        text: "Hello\nWorld!"
        selectByMouse: true
        cursorDelegate: Rectangle {
            width: 10
            color: "transparent"
            border.color: "red"
        }
    }
}