From a3f259d0041afba7150444c882e708fe43392d4b Mon Sep 17 00:00:00 2001 From: jspijker Date: Tue, 8 Nov 2022 18:27:09 +0100 Subject: [PATCH] Send user to external DF printer page Contributes to CURA-8689 --- resources/qml/WelcomePages/AddUltimakerPrinter.qml | 8 +------- 1 file changed, 1 insertion(+), 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") } } }