mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 16:57:51 -06:00
Fix resolving of URL's
This commit is contained in:
parent
605280255f
commit
c88ed076a1
2 changed files with 4 additions and 4 deletions
|
@ -59,11 +59,11 @@ Item
|
|||
switch (packageData.packageType)
|
||||
{
|
||||
case "plugin":
|
||||
return "../images/Plugin.svg";
|
||||
return Qt.resolvedUrl("../images/Plugin.svg");
|
||||
case "material":
|
||||
return "../images/Spool.svg";
|
||||
return Qt.resolvedUrl("../images/Spool.svg");
|
||||
default:
|
||||
return "../images/placeholder.svg";
|
||||
return Qt.resolvedUrl("../images/placeholder.svg");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue