aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktext/data/fontSizeMode.qml
blob: 84f7ce8d50c8a3af8091524a17d1c09f82728ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0

Item {
    width: 300
    height: 200

    Rectangle {
        anchors.fill: myText
        border.width: 1
    }

    Text {
        id: myText
        objectName: "myText"
        width: 250
        height: 41
        minimumPointSize: 8
        minimumPixelSize: 8
        font.pixelSize: 30
        font.family: "Helvetica"
    }
}