aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/dialog/modal.qml
blob: c59b9b85450298602fb98ae7b76174693302d2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick
import QtQuick.Controls

Item {
    width: 300
    height: 200

    Dialog {
        anchors.centerIn: parent
        height: 100
        width: 100
        visible: true
        enabled: true
        modal: true
        title: qsTr("dialog 1")
    }
}