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

Rectangle {
    width: 220
    height: 100

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