aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/goodBindingsOnGroupAndAttached.qml
blob: 7a89b82f6ea55fe6a751abe3f43e901a50c4ed11 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick
Rectangle {
    Text {
        font.pixelSize: 42
    }

    Keys.enabled: false
    Keys.onPressed: function(event) {
        console.log(event);
    }
}