From 94eed1b0df16033d0b38731e5dc06c94a93f1bf1 Mon Sep 17 00:00:00 2001 From: daid303 Date: Sun, 13 Jan 2013 20:02:46 +0100 Subject: [PATCH] Fix the mirror options. --- Cura/util/profile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.30.2