mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-11 07:48:53 -07:00
Add an About dialog for Cura
This commit is contained in:
parent
8cbc239af6
commit
e0e33aa029
1 changed files with 24 additions and 0 deletions
24
qml/AboutDialog.qml
Normal file
24
qml/AboutDialog.qml
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue