From 016371d77160eb07b9187fd65157ded2b535caac Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Wed, 14 Jul 2021 14:34:00 +0200 Subject: [PATCH] Add the external link icon to the Upgrade plan button CURA-8112 --- plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml index b638082853..a4eefd13f6 100644 --- a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml @@ -65,9 +65,10 @@ Item anchors.verticalCenter: selectProjectLabel.verticalCenter anchors.right: parent.right text: "Upgrade plan" + iconSource: UM.Theme.getIcon("LinkExternal") visible: createNewProjectButtonVisible && !manager.userAccountCanCreateNewLibraryProject && (manager.retrievingProjectsStatus == DF.RetrievalStatus.Success || manager.retrievingProjectsStatus == DF.RetrievalStatus.Failed) tooltip: "You have reached the maximum number of projects allowed by your subscription. Please upgrade to the Professional subscription to create more projects." - tooltipWidth: parent.width * 3 / 4 + tooltipWidth: parent.width * 0.5 onClicked: Qt.openUrlExternally("https://ultimaker.com/software/enterprise-software") }