aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols2/qquickcontrol/data/fractionalFontSize.qml
blob: a4574e460e8dcdf50e58ae7b9e1e4ef249a3f3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick
import QtQuick.Controls

ApplicationWindow {
    width: 400
    height: 400

    property alias control: ctrl

    Control {
        id: ctrl
        contentItem: Text {
            font.pointSize: 10.5
            elide: Text.ElideRight
            text: "This is some sample text"
        }
    }
}