aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/fontSizeMode.qml
blob: 48e7c7b6d06f739090f68b37b3a9704f4ea0adb6 (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: 35
        minimumPointSize: 8
        minimumPixelSize: 8
        font.pixelSize: 25
        font.family: "Helvetica"
    }
}