Skip to content

Commit

Permalink
feat: allow duplicate selection shortcut pass-through in new_sketch o…
Browse files Browse the repository at this point in the history
…perator
  • Loading branch information
tristan-hm committed Jan 26, 2022
1 parent c433400 commit 86255a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions new_sketch.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ def modal(self, context, event):

return {'FINISHED'}

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

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

Expand Down

0 comments on commit 86255a0

Please sign in to comment.