aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qquickpopup/data/closeOnEscapeWithVisiblePopup.qml
blob: b9606eb2ae47606b40693082f9579dd0b7b4cdcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.13
import QtQuick.Window 2.13
import QtQuick.Controls 2.13

Window {
    width: 400
    height: 400
    Popup {
        objectName: "popup"
        visible: true
        width: 200
        height: 200
        anchors.centerIn: parent
        closePolicy: Popup.CloseOnEscape
    }
}