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:
authorJaime van Kessel <nallath@gmail.com>2022-05-09 15:21:17 +0300
committerJaime van Kessel <nallath@gmail.com>2022-05-09 15:21:17 +0300
commit325bf058e0e2f9e3336b522db8fb5edf635d659a (patch)
tree9a1e082aa14023eb10b49a333fa09aaf90e4a962 /resources/qml
parent3c2c2219ac786d6e7a0bffc3a0aa4e0bae9d4328 (diff)
parent06c15f08aa11c7512b190979d89a1949a40cd66a (diff)
Merge branch 'CURA-9143_dropdown_item_width' of github.com:Ultimaker/Cura
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Account/UserOperations.qml10
1 files changed, 8 insertions, 2 deletions
diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml
index c8642681ae..9e5d082738 100644
--- a/resources/qml/Account/UserOperations.qml
+++ b/resources/qml/Account/UserOperations.qml
@@ -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
}
}