aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/transparentSelectionColor.qml
blob: 185d66a1ed0379e755dad73469ec31ccd8b2561a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.10

Rectangle {
    width: 640
    height: 480
    color: "red"
    TextEdit {
        id: textEdit
        anchors.top: parent.top
        anchors.left: parent.left
        width: contentWidth
        height: contentHeight
        font.pixelSize: 50
        text: "          "
        selectionColor: "transparent"
    }
}