From 77566180f12cef3d00ebe60391372809334e2060 Mon Sep 17 00:00:00 2001 From: Ruben D Date: Sun, 4 Feb 2018 01:53:10 +0100 Subject: [PATCH] Remove commented code Oops, forgot about this one. --- plugins/PostProcessingPlugin/PostProcessingPlugin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.py b/plugins/PostProcessingPlugin/PostProcessingPlugin.py index 9cc369a0d9..7339b379b5 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.py +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.py @@ -39,7 +39,6 @@ class PostProcessingPlugin(QObject, Extension): Application.getInstance().getOutputDeviceManager().writeStarted.connect(self.execute) Application.getInstance().globalContainerStackChanged.connect(self._onGlobalContainerStackChanged) #When the current printer changes, update the list of scripts. Application.getInstance().mainWindowChanged.connect(self._createView) #When the main window is created, create the view so that we can display the post-processing icon if necessary. - #self.scriptListChanged.connect(self.writeScriptsToStack) #Whenever there is a change, save it into the stack. selectedIndexChanged = pyqtSignal() @pyqtProperty("QVariant", notify = selectedIndexChanged)