Cura/resources/qml/MachineAction.qml
2021-03-29 17:55:19 +02:00

19 lines
378 B
QML

import QtQuick 2.15
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()
}
}