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-11-28 12:28:16 +0300
committerGitHub <noreply@github.com>2018-11-28 12:28:16 +0300
commitbfebb33123f34894887719f114c942485a48b540 (patch)
treecc85826742140054364c71f009cdb33c388d2427 /resources/qml/Toolbar.qml
parentc1c5eb221913dd7ce7538ef9d4120f7b69866729 (diff)
Code style
CURA-5984 Co-Authored-By: diegopradogesto <d.pradogesto@ultimaker.com>
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 d16f949014..07522dd535 100644
--- a/resources/qml/Toolbar.qml
+++ b/resources/qml/Toolbar.qml
@@ -66,7 +66,7 @@ Item
toolItem: UM.RecolorImage
{
- source: (UM.Theme.getIcon(model.icon) != "") ? UM.Theme.getIcon(model.icon) : "file:///" + model.location + "/" + model.icon
+ source: UM.Theme.getIcon(model.icon) != "" ? UM.Theme.getIcon(model.icon) : "file:///" + model.location + "/" + model.icon
color: UM.Theme.getColor("toolbar_button_text")
sourceSize: UM.Theme.getSize("button_icon")