Cleanup: typos in comments (duplicate words)

This commit is contained in:
Campbell Barton
2024-07-14 18:55:43 +10:00
parent 06ba62f278
commit 8fdb190278
32 changed files with 39 additions and 42 deletions

View File

@@ -50,10 +50,9 @@ class ModalDrawOperator(bpy.types.Operator):
def invoke(self, context, event):
if context.area.type == 'VIEW_3D':
# the arguments we pass the the callback
# The arguments we pass the callback.
args = (self, context)
# Add the region OpenGL drawing callback
# draw in view space with 'POST_VIEW' and 'PRE_VIEW'
# Add the region OpenGL drawing callback draw in view space with `POST_VIEW` and `PRE_VIEW`.
self._handle = bpy.types.SpaceView3D.draw_handler_add(draw_callback_px, args, 'WINDOW', 'POST_PIXEL')
self.mouse_path = []