From: Youness Alaoui Date: Fri, 31 Jul 2015 20:46:39 +0000 (-0400) Subject: Fix the X and Y offsets of the dual extruder toolheads X-Git-Tag: lulzbot-15.02.1-2.01~54 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6c2f452a7fe042900b2853c349e0b014ca2c5029;p=cura.git Fix the X and Y offsets of the dual extruder toolheads Fixes T171 --- 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)