fix(Toolbox.qml): replace Image with IconImage

This commit is contained in:
uncor3
2026-06-09 21:43:00 +03:00
parent 4dc8e0f171
commit f483d7da43
+4 -3
View File
@@ -392,15 +392,16 @@ Item {
anchors.margins: 12
spacing: 12
Image {
IconImage {
id: icon
source: tile.iconSource
Layout.preferredHeight: 34
Layout.preferredWidth: 34
// FIXME:theming
// color: "black"
// FIXME: hardcoded accent color
color: "#0078d7"
opacity: tile.enabled ? 1.0 : 0.7
}