fix: Icon components had wrong color in sandbox app
Icon color in Icons page was broken as setting it in main.qml was mistakenly removed. Set it back to Theme.palette.primaryColor1 Closes #538
This commit is contained in:
parent
8e4b6c3dca
commit
dc9cb8a08a
|
@ -273,7 +273,12 @@ StatusWindow {
|
|||
Loader {
|
||||
id: viewLoader
|
||||
anchors.centerIn: parent
|
||||
source: control("Icons")
|
||||
source: mainPageView.control("Icons")
|
||||
onSourceChanged: {
|
||||
if (source.toString().includes("Icons")) {
|
||||
item.iconColor = Theme.palette.primaryColor1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue