summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml
blob: 0370a73b57f44b12d1583450687eb12605e3b76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0
import "../../shared" 1.0

Rectangle {
    width: 500
    height: 100

    TestText {
        NumberAnimation on width { from: 500; to: 0; loops: Animation.Infinite; duration: 5000 }
        elide: Text.ElideRight
        text: 'Here is some very long text that we should truncate when sizing window'
    }
}