mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-10-10 00:46:29 +08:00
10 lines
238 B
QML
10 lines
238 B
QML
import QtQuick 2.2
|
|
|
|
Item
|
|
{
|
|
id: contentItem
|
|
// Connect the finished property change to completed signal.
|
|
property var finished: manager.finished
|
|
onFinishedChanged: if(manager.finished) {completed()}
|
|
signal completed()
|
|
} |