Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjspijker <j.spijker@ultimaker.com>2022-11-08 20:27:09 +0300
committerjspijker <j.spijker@ultimaker.com>2022-11-08 20:27:09 +0300
commita3f259d0041afba7150444c882e708fe43392d4b (patch)
treeaea0d1a85febb2735ae8e5457ee1731100b63325
parentf0966b1c578b8c56ead7baf0aabd098674b415f5 (diff)
Send user to external DF printer page
Contributes to CURA-8689
-rw-r--r--resources/qml/WelcomePages/AddUltimakerPrinter.qml8
1 files changed, 1 insertions, 7 deletions
diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
index a2b08a45b6..3ebe372550 100644
--- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml
+++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
@@ -113,13 +113,7 @@ Control
id: signInButton
Layout.alignment: Qt.AlignRight
text: catalog.i18nc("@button", "Sign in to Digital Factory")
- onClicked: function()
- {
- text = catalog.i18nc("@button", "Waiting for new printers")
- busy = true;
- enabled = false;
- Cura.API.account.login();
- }
+ onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/printers?add-printer?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer")
}
}
}