aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers/qquickwheelhandler/data/rectWheel.qml
blob: c0c5e776e9659c5d5599efa72112d9b25e69a644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.14

Rectangle {
    width: 320; height: 240
    color: "green"; antialiasing: true

    Rectangle {
        width: 100; height: 2; anchors.centerIn: parent
        Rectangle {
            width: 2; height: 100; anchors.centerIn: parent
        }
    }

    WheelHandler {
        activeTimeout: 0.5
    }
}