Skip to content

Commit

Permalink
Fix the mirror options.
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Jan 13, 2013
1 parent f46ab19 commit 94eed1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cura/util/profile.py
Expand Up @@ -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
Expand Down

0 comments on commit 94eed1b

Please sign in to comment.