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

Text {
    width: implicitWidth / 2
    height: implicitHeight / 2
    elide: Text.ElideRight
    maximumLineCount: 4

    text: "Line one\nLine two\nLine three\nLine four"
}