Browse Source

Changed guid to GUID in the filter

We use the veriable as upper.
Jaime van Kessel 8 years ago
parent
commit
4db1db302b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/PrinterOutputDevice.py

+ 1 - 1
cura/PrinterOutputDevice.py

@@ -286,7 +286,7 @@ class PrinterOutputDevice(QObject, OutputDevice):
                 result.append(i18n_catalog.i18nc("@item:material", "No material loaded"))
                 continue
 
-            containers = self._container_registry.findInstanceContainers(type = "material", guid = material_id)
+            containers = self._container_registry.findInstanceContainers(type = "material", GUID = material_id)
             if containers:
                 result.append(containers[0].getName())
             else: