Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-01-05 17:26:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-05 17:46:41 +0300
commitb1cec919ec7d255c29d31bc21c91d98e0d118182 (patch)
tree13786dff1d80b5d210009d1b2f694bb9fee1ec05 /mesh_snap_utilities_line/common_classes.py
parent94bd4819809c15642cff15bf92b09ed589ffddc2 (diff)
Cleanup: fix types in source code
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
Diffstat (limited to 'mesh_snap_utilities_line/common_classes.py')
-rw-r--r--mesh_snap_utilities_line/common_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_snap_utilities_line/common_classes.py b/mesh_snap_utilities_line/common_classes.py
index f0e2a8ed..3068100a 100644
--- a/mesh_snap_utilities_line/common_classes.py
+++ b/mesh_snap_utilities_line/common_classes.py
@@ -293,7 +293,7 @@ class Constrain:
self.last_type = type
return True
- def toogle(self):
+ def toggle(self):
self.rotMat = None # update
if self.preferences.auto_constrain:
self.orientation_id = (self.orientation_id + 1) % 2