From 3b251919497e77e5dc4dfd5956603973d30bc1cc Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Mon, 4 Dec 2017 17:00:43 +0100 Subject: [PATCH] Undo a fix that causes Cura to crash when starting up clean. Contributes to issue CURA-4243. --- cura/CuraApplication.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index c051e429e2..a395329552 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -728,8 +728,6 @@ class CuraApplication(QtApplication): def getMachineManager(self, *args): if self._machine_manager is None: self._machine_manager = MachineManager.createMachineManager() - # explicitly sets current material and set internal state: also fixes problem with material namechange signal - self._machine_manager.setActiveMaterial(self._machine_manager.activeMaterialId) return self._machine_manager def getExtruderManager(self, *args):