aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/hide.qml
blob: ab520549e23843e22c01080caf31062ab6e2d125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Flickable {
    id: flickable
    width: 200; height: 200
    contentWidth: 400; contentHeight: 400

    MouseArea {
        objectName: "mouseArea"
        width: 400; height: 400
        onDoubleClicked: flickable.visible = false
    }
}