Skip to content

Commit

Permalink
fix: ensure simple deform angle decrements as intended using the step…
Browse files Browse the repository at this point in the history
…_down key event
  • Loading branch information
tristan-hm committed May 14, 2022
1 parent e2d0e07 commit 9e7b91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion power_mods/simple_deform.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def modal(self, context, event):
elif self.key_step_down:
if self.key_no_modifiers:
if self.is_angular[self.methods[self.current_method]]:
self.angle = min(360, self.angle + angle_factor)
self.angle = min(360, self.angle - angle_factor)
else:
self.factor -= factor_factor
elif self.key_alt:
Expand Down

0 comments on commit 9e7b91a

Please sign in to comment.