aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/hAlignImplicitWidth.qml
blob: 9c9318d3cc2e809936b36c4e8099bd3ac0aa76d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Rectangle {
    width: 200
    height: 100

    Text {
        objectName: "textItem"
        text: "AA\nBBBBBBB\nCCCCCCCCCCCCCCCC"
        anchors.centerIn: parent
        horizontalAlignment: Text.AlignLeft
    }
}