|
@@ -90,8 +90,9 @@ Column
|
|
|
Cura.TertiaryButton
|
|
|
{
|
|
|
id: cloudButton
|
|
|
- width: UM.Theme.getSize("account_button").width
|
|
|
+ width: parent.width
|
|
|
height: UM.Theme.getSize("account_button").height
|
|
|
+
|
|
|
text: "Ultimaker Digital Factory"
|
|
|
onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-DF")
|
|
|
fixedWidthMode: false
|
|
@@ -100,8 +101,9 @@ Column
|
|
|
Cura.TertiaryButton
|
|
|
{
|
|
|
id: accountButton
|
|
|
- width: UM.Theme.getSize("account_button").width
|
|
|
+ width: parent.width
|
|
|
height: UM.Theme.getSize("account_button").height
|
|
|
+
|
|
|
text: catalog.i18nc("@button", "Ultimaker Account")
|
|
|
onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-account")
|
|
|
fixedWidthMode: false
|
|
@@ -117,7 +119,11 @@ Column
|
|
|
Cura.TertiaryButton
|
|
|
{
|
|
|
id: signOutButton
|
|
|
+ width: parent.width
|
|
|
+ height: UM.Theme.getSize("account_button").height
|
|
|
+
|
|
|
onClicked: Cura.API.account.logout()
|
|
|
text: catalog.i18nc("@button", "Sign Out")
|
|
|
+ fixedWidthMode: false
|
|
|
}
|
|
|
}
|