From b23bbe02fd786f273c96ba2b9da0368650dc2004 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 6 Oct 2015 14:54:24 +0200 Subject: [PATCH] Send the dual extrusion file as base JSON to the engine --- plugins/CuraEngineBackend/CuraEngineBackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index c612a6656c..85776d9dd6 100644 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -84,7 +84,7 @@ class CuraEngineBackend(Backend): # This is usefull for debugging and used to actually start the engine # \return list of commands and args / parameters. def getEngineCommand(self): - return [Preferences.getInstance().getValue("backend/location"), "connect", "127.0.0.1:{0}".format(self._port), "-j", Resources.getPath(Resources.MachineDefinitions, "fdmprinter.json"), "-vv"] + return [Preferences.getInstance().getValue("backend/location"), "connect", "127.0.0.1:{0}".format(self._port), "-j", Resources.getPath(Resources.MachineDefinitions, "dual_extrusion_printer.json"), "-vv"] ## Emitted when we get a message containing print duration and material amount. This also implies the slicing has finished. # \param time The amount of time the print will take.