From: daid303 Date: Sun, 13 Jan 2013 19:02:46 +0000 (+0100) Subject: Fix the mirror options. X-Git-Tag: 13.03~109 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=94eed1b0df16033d0b38731e5dc06c94a93f1bf1;p=cura.git Fix the mirror options. --- diff --git a/Cura/util/profile.py b/Cura/util/profile.py index a015e513..064b7748 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -436,11 +436,11 @@ def getObjectMatrix(): scaleX = getProfileSettingFloat('model_scale') scaleY = getProfileSettingFloat('model_scale') scaleZ = getProfileSettingFloat('model_scale') - if getProfileSetting('flipX') == 'True': + if getProfileSetting('flip_x') == 'True': scaleX = -scaleX - if getProfileSetting('flipY') == 'True': + if getProfileSetting('flip_y') == 'True': scaleY = -scaleY - if getProfileSetting('flipZ') == 'True': + if getProfileSetting('flip_z') == 'True': scaleZ = -scaleZ mat00 = math.cos(rotate) * scaleX mat01 =-math.sin(rotate) * scaleY