aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/hAlignImplicitWidth.qml
blob: 136e5d21a2bf161dab4e986889f4c203c7d7f16a (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\nBBBBB\nCCCCCCCCCCCCCCCC"
        anchors.centerIn: parent
        horizontalAlignment: Text.AlignLeft
    }
}