mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-30 01:55:55 +08:00
25 lines
355 B
QML
25 lines
355 B
QML
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;
|
|
}
|
|
}
|
|
|