From c73ef8439505c66a8630820517aa16db224cf9c8 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 6 Dec 2021 16:47:53 +0100 Subject: [PATCH] Show the correct busy message Contributes to: CURA-8587 --- plugins/Marketplace/resources/qml/ManageButton.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Marketplace/resources/qml/ManageButton.qml b/plugins/Marketplace/resources/qml/ManageButton.qml index 323fea03f1..5e1aad03e7 100644 --- a/plugins/Marketplace/resources/qml/ManageButton.qml +++ b/plugins/Marketplace/resources/qml/ManageButton.qml @@ -28,6 +28,7 @@ RowLayout onClicked: { + busyMessageText.text = manageButton.busyPrimaryText manageButton.clicked(true) } } @@ -40,6 +41,7 @@ RowLayout onClicked: { + busyMessageText.text = manageButton.busySecondaryText manageButton.clicked(false) } } @@ -76,7 +78,6 @@ RowLayout { id: busyMessageText visible: parent.visible - text: manageButton.state == "primary" ? manageButton.busyPrimaryText : manageButton.busySecondaryText anchors.left: busyIndicator.right anchors.verticalCenter: parent.verticalCenter