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>2017-05-29 14:47:41 +0300
committerJaime van Kessel <nallath@gmail.com>2017-05-29 14:47:41 +0300
commitca922e9e9da6a9209d8a27849f7ca1949ff9379a (patch)
tree339b2d6c74fc8c301972190b6738e86f6b386f48 /cura/PrinterOutputDevice.py
parent5dbee706a7a299cb32dffa3fd83985193ebc6eb0 (diff)
The monitor item is now actually used to display information on monitor page
The UM3 now provides camera image in this way CURA-3826
Diffstat (limited to 'cura/PrinterOutputDevice.py')
-rw-r--r--cura/PrinterOutputDevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py
index b8a5da6fb9..e23efc0f5a 100644
--- a/cura/PrinterOutputDevice.py
+++ b/cura/PrinterOutputDevice.py
@@ -132,7 +132,7 @@ class PrinterOutputDevice(QObject, OutputDevice):
return self._monitor_item
def _createMonitorViewFromQML(self):
- path = QUrl.fromLocalFile(os.path.join(PluginRegistry.getInstance().getPluginPath(self.getPluginId()), self._monitor_view_qml_path))
+ path = QUrl.fromLocalFile(self._monitor_view_qml_path)
# Because of garbage collection we need to keep this referenced by python.
self._monitor_component = QQmlComponent(Application.getInstance()._engine, path)