Browse Source

Fix selecting cura connect printer preference

ChrisTerBeke 7 years ago
parent
commit
b3758be12e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py

+ 1 - 1
plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py

@@ -234,7 +234,7 @@ class NetworkClusterPrinterOutputDevice(NetworkPrinterOutputDevice.NetworkPrinte
     def spawnPrintView(self):
         if self._print_view is None:
             path = os.path.join(self._plugin_path, "PrintWindow.qml")
-            self._print_view = Application.getInstance().createQmlComponent(path, {"OutputDevice", self})
+            self._print_view = Application.getInstance().createQmlComponent(path, {"OutputDevice": self})
         if self._print_view is not None:
             self._print_view.show()