aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/pointerhandlers/data/tapHandlerButton.qml
blob: 4d5c70f544a813fbb11458829cf407ad53ac76cc (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick
import QtQuick.Controls

Rectangle {
    color: th.pressed ? "lightsteelblue" : "beige"
    Button {
        text: pressed ? "pressed" : ""
        width: 150 // workaround for QTBUG-104954
        TapHandler { id: th }
    }
}