Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2018-12-14 13:59:22 +0300
committerJaime van Kessel <nallath@gmail.com>2018-12-14 13:59:22 +0300
commit6a3ac9955162885c81859354d366d82cad40e42f (patch)
treeda4d6e03c0873aa672b5e8e60930ade3decd9ec2 /resources/qml/Toolbar.qml
parent15cd2a926975403ad0e225ffa0b2e63beadcab1b (diff)
Ensure that all icons use the same color from theme.
Also added some fixes for the dark theme
Diffstat (limited to 'resources/qml/Toolbar.qml')
-rw-r--r--resources/qml/Toolbar.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml
index 1e335472d4..c3c4c1cd6d 100644
--- a/resources/qml/Toolbar.qml
+++ b/resources/qml/Toolbar.qml
@@ -67,7 +67,7 @@ Item
toolItem: UM.RecolorImage
{
source: UM.Theme.getIcon(model.icon) != "" ? UM.Theme.getIcon(model.icon) : "file:///" + model.location + "/" + model.icon
- color: UM.Theme.getColor("toolbar_button_text")
+ color: UM.Theme.getColor("icon")
sourceSize: UM.Theme.getSize("button_icon")
}