Skip to content

Commit

Permalink
feat: allow F key passthrough on face_sketch operator
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed Jan 30, 2022
1 parent 641ab22 commit a8e4e3a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions face_sketch.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def modal(self, context, event):
if self.key_alt:
self.face_operation_mode = (self.face_operation_mode - 1) % 2

elif event.type == 'F' and event.value == 'PRESS':
return {'PASS_THROUGH'}

elif self.key_confirm:
return {'PASS_THROUGH'}

Expand Down

0 comments on commit a8e4e3a

Please sign in to comment.