When tool icon can not be found in theme, try to find it in the plugin folder

CURA-4345
This commit is contained in:
Jaime van Kessel 2017-09-21 15:19:00 +02:00
parent 4d99fb067f
commit 78987ba666

View file

@ -34,7 +34,15 @@ Item
Button
{
text: model.name
iconSource: UM.Theme.getIcon(model.icon);
iconSource:
{
var result = UM.Theme.getIcon(model.icon)
if(result == "")
{
return model.location + "/" + model.icon
}
return result
}
checkable: true;
checked: model.active;