Add an About dialog for Cura

This commit is contained in:
Arjen Hiemstra 2015-04-29 17:43:29 +02:00
parent 8cbc239af6
commit e0e33aa029

24
qml/AboutDialog.qml Normal file
View File

@ -0,0 +1,24 @@
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtQuick.Window 2.1
import UM 1.0 as UM
UM.Dialog {
id: base
//: Add Printer dialog title
title: qsTr("About Cura");
Label {
text: "Cura";
}
rightButtons: Button {
text: "Close";
onClicked: base.visible = false;
}
}