aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextinput/data/checkCursorDelegateWhenPaddingChanged.qml
blob: e6f07b46872aabcb265e0dcca49d1db0816c99fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.12

Rectangle {
    width: 200
    height: 200
    TextInput {
        objectName: "textInput"
        leftPadding: 10
        focus: true
        cursorDelegate: Rectangle {
            objectName: "cursorDelegate"
            width: 5
            color: "red"
        }
    }
}