From: Youness Alaoui Date: Tue, 4 Aug 2015 18:46:17 +0000 (-0400) Subject: Fix Dual extruder tool head naming to Dual instead of Dually X-Git-Tag: lulzbot-15.02.1-2.01~37 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5a0856ca654241dafe3c3df94359757ae2e395eb;p=cura.git Fix Dual extruder tool head naming to Dual instead of Dually --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index efb4fb63..230287cb 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -1306,8 +1306,8 @@ class LulzbotTazToolheadSelectPage(LulzbotToolheadSelectPage): 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) + profile.putMachineSetting('toolhead_shortname', 'Dual v%d' % self.version) + profile.putMachineSetting('machine_type', 'lulzbot_TAZ_%d_DualV%d' % version) elif self.flexydually.GetValue(): profile.putProfileSetting('nozzle_size', '0.6') profile.putMachineSetting('extruder_amount', '2')