From 97c779cc53319f6f97c2281df2d80d6b35b92bb8 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Fri, 6 Aug 2021 09:50:04 +0200 Subject: [PATCH] Use the old icon names So that they can still be found in 4.9 and 4.10 Cura version. CURA-8444 --- plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml index d0c653b014..391c3a0fcc 100644 --- a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml @@ -65,7 +65,7 @@ Item left: parent.left leftMargin: UM.Theme.getSize("default_margin").width } - source: UM.Theme.getIcon("Magnifier") + source: UM.Theme.getIcon("search") height: UM.Theme.getSize("small_button_icon").height width: height color: UM.Theme.getColor("text") @@ -92,7 +92,7 @@ Item id: upgradePlanButton text: "Upgrade plan" - iconSource: UM.Theme.getIcon("LinkExternal") + iconSource: UM.Theme.getIcon("external_link") visible: createNewProjectButtonVisible && !manager.userAccountCanCreateNewLibraryProject && (manager.retrievingProjectsStatus == DF.RetrievalStatus.Success || manager.retrievingProjectsStatus == DF.RetrievalStatus.Failed) tooltip: "Maximum number of projects reached. Please upgrade your subscription to create more projects."