qt6-bb10/qtdeclarative/tests/baseline/scenegraph/data/text/textinput_italic_selected.qml

18 lines
289 B
QML

import QtQuick 2.0
Item {
width: 320
height: 480
TextInput {
anchors.centerIn: parent
id: textInput
font.pixelSize: 44
font.italic: true
text: "777"
Component.onCompleted: {
textInput.select(1, 2)
}
}
}