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:
authorj.delarago <joeydelarago@gmail.com>2022-03-15 17:03:49 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-15 17:03:49 +0300
commitbf784dbba03ed5bdc932e4fa4446723e28a40017 (patch)
tree99664307d8755789e26f9574a3866bc287835d67
parent59b7d20f75ad76daa1113b3807c0cecbcb03f903 (diff)
show star on hover
CURA-8979
-rw-r--r--resources/qml/Preferences/Materials/MaterialsSlot.qml4
1 files 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")
}