From cac561600e99eec39c036c7126b8cd2dc2f7a121 Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Thu, 14 Dec 2017 15:44:11 +0100 Subject: [PATCH] Use pyqtProperty instead of slot to bind backend --- resources/qml/SaveButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index 9ecde4d72a..2b938c1745 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -14,7 +14,7 @@ Item { property real progress: UM.Backend.progress property int backendState: UM.Backend.state - property var backend: CuraApplication.getBackend() || "undefined" + property var backend: CuraApplication.backend property bool activity: CuraApplication.platformActivity property alias buttonRowWidth: saveRow.width