Skip to content
Snippets Groups Projects
Commit 7861d837 authored by Damien Picard's avatar Damien Picard
Browse files

Rigify: fix logical error from 3ef6ed47

The expression {'y' or '-y'} was reduced to {'y'}
parent 8a451e74
Branches
Tags
No related merge requests found
......@@ -558,7 +558,7 @@ class Rig:
)
invert_last = True
if self.params.wgt_align_axis not in {'y' or '-y'}:
if self.params.wgt_align_axis not in {'y', '-y'}:
invert_last = False
create_chain_widget(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment