Cura/resources/qml/MachineAction.qml
2016-12-23 15:53:14 -05:00

19 lines
No EOL
376 B
QML
Executable file

import QtQuick 2.2
Item
{
id: contentItem
// Point to the dialog containing the displayItem
property var dialog
// Connect the finished property change to completed signal.
property var finished: manager.finished
onFinishedChanged: if(manager.finished) {completed()}
signal completed()
function reset()
{
manager.reset()
}
}