From bf784dbba03ed5bdc932e4fa4446723e28a40017 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Tue, 15 Mar 2022 15:03:49 +0100 Subject: [PATCH] show star on hover CURA-8979 --- resources/qml/Preferences/Materials/MaterialsSlot.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Preferences/Materials/MaterialsSlot.qml b/resources/qml/Preferences/Materials/MaterialsSlot.qml index 0c50d6b2f3..6e620fe44b 100644 --- a/resources/qml/Preferences/Materials/MaterialsSlot.qml +++ b/resources/qml/Preferences/Materials/MaterialsSlot.qml @@ -87,7 +87,7 @@ Rectangle { name: "favorite" when: material !== null && material.is_favorite - PropertyChanges { target: favoriteIndicator; source: UM.Theme.getIcon("StarFilled"); color: UM.Theme.getColor("primary") } + PropertyChanges { target: favoriteIndicator; source: UM.Theme.getIcon("StarFilled");} PropertyChanges { target: favoriteButton; visible: true } }, State @@ -109,7 +109,7 @@ Rectangle anchors.centerIn: parent width: UM.Theme.getSize("small_button_icon").width height: UM.Theme.getSize("small_button_icon").height - color: UM.Theme.getColor("text_inactive") + color: UM.Theme.getColor("primary") source: UM.Theme.getIcon("Star") }