aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/qquickdialog/DialogLabel.qml
blob: 7c2d52953f7f5b35a7784f3ec3b295ca6fceb488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick.Controls

Label {
    x: dialog.x + (dialog.width - width) / 2
    y: dialog.y - height
    width: dialog.width
    wrapMode: Label.Wrap

    property Dialog dialog
}