Browse Source

Fix dark theme icon colour

Contributes to issue CURA-7071.
Ghostkeeper 5 years ago
parent
commit
654a28450d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/Toolbox/resources/qml/components/ToolboxHeader.qml

+ 2 - 2
plugins/Toolbox/resources/qml/components/ToolboxHeader.qml

@@ -90,16 +90,16 @@ Item
             verticalCenter: parent.verticalCenter
         }
         onClicked: Qt.openUrlExternally(toolbox.getWebMarketplaceUrl)
-        Image
+        UM.RecolorImage
         {
             id: cloudMarketplaceButton
             source: "../../images/shop.svg"
+            color: UM.Theme.getColor("text")
             height: parent.height / 2
             width: height
             anchors.verticalCenter: parent.verticalCenter
             sourceSize.width: width
             sourceSize.height: height
-            fillMode: Image.PreserveAspectFit
         }
     }