Skip to content

Commit 4df0d11

Browse files
committed
Fix "profile changes" star icon in 4.11
1 parent 72c419c commit 4df0d11

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

resources/qml/ProfileSelector44.qml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,14 @@ Item
135135
anchors.rightMargin: UM.Theme.getSize("default_margin").width
136136

137137
color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button");
138-
iconSource: UM.Theme.getIcon("star")
138+
iconSource:
139+
{
140+
if(isLE410)
141+
{
142+
UM.Theme.getIcon("star")
143+
}
144+
return UM.Theme.getIcon("StarFilled")
145+
}
139146

140147
onClicked:
141148
{

0 commit comments

Comments
 (0)