aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/paddingInLoader.qml
blob: 6ef7c25a9b1a2f6a8faa5f30fbf0e96171dd6e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.12

Item {
    width: 30
    height: 30
    Loader {
        anchors.fill: parent
        sourceComponent: Text {
            rightPadding: 30
            text: "Some text"
            elide: Text.ElideRight
        }
    }
}