aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/ellipsisText.qml
blob: 37faafcbf3ab3a06e836cb7722465ac964dfb3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

Text {
    width: 0
    height: 10
    text: "Meaningless text"
    elide: Text.ElideRight

    Text {
        objectName: "elidedRef"
        width: 10
        height: 10
        text: "Meaningless text"
        elide: Text.ElideRight
    }
}