This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Michael Zanetti 93c91d71bd more work
2018-02-25 05:48:36 +01:00

21 lines
394 B
QML

import QtQuick 2.8
import QtQuick.Controls 2.1
Dialog {
width: parent.width * .6
height: parent.height * .6
x: (parent.width - width) / 2
y: (parent.height - height) / 2
title: qsTr("Error")
property alias text: contentLabel.text
standardButtons: Dialog.Ok
Label {
id: contentLabel
width: parent.width
wrapMode: Text.WordWrap
}
}