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

Item {
    width: 300
    height: 200

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