From 6c2f452a7fe042900b2853c349e0b014ca2c5029 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 31 Jul 2015 16:46:39 -0400 Subject: [PATCH] Fix the X and Y offsets of the dual extruder toolheads Fixes T171 --- Cura/gui/configWizard.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 3b985535..fb25a406 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -1302,12 +1302,16 @@ class LulzbotTazToolheadSelectPage(LulzbotToolheadSelectPage): elif self.dually.GetValue(): profile.putProfileSetting('nozzle_size', '0.5') profile.putMachineSetting('extruder_amount', '2') + profile.putMachineSetting('extruder_offset_x1', '0.0') + profile.putMachineSetting('extruder_offset_y1', '-50.0' if self.version == 2 else '-52.00') profile.putMachineSetting('toolhead', 'Dual Extruder V%d' % self.version) profile.putMachineSetting('toolhead_shortname', 'Dually v%d' % self.version) profile.putMachineSetting('machine_type', 'lulzbot_TAZ_%d_DuallyV%d' % version) elif self.flexydually.GetValue(): profile.putProfileSetting('nozzle_size', '0.6') profile.putMachineSetting('extruder_amount', '2') + profile.putMachineSetting('extruder_offset_x1', '0.0') + profile.putMachineSetting('extruder_offset_y1', '-50.0' if self.version == 2 else '-52.00') profile.putMachineSetting('toolhead', 'FlexyDually V%d' % self.version) profile.putMachineSetting('toolhead_shortname', 'FlexyDually v%d' % self.version) profile.putMachineSetting('machine_type', 'lulzbot_TAZ_%d_FlexyDuallyV%d' % version) -- 2.30.2