mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-17 09:08:49 +00:00
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…
x
Reference in New Issue
Block a user