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_f2.py
parent94bd4819809c15642cff15bf92b09ed589ffddc2 (diff)
Cleanup: fix types in source code
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
Diffstat (limited to 'mesh_f2.py')
-rw-r--r--mesh_f2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_f2.py b/mesh_f2.py
index 569b86de..9829d3bc 100644
--- a/mesh_f2.py
+++ b/mesh_f2.py
@@ -461,7 +461,7 @@ def expand_vert(self, context, event):
bpy.ops.transform.translate('INVOKE_DEFAULT')
-def checkforconnected(conection):
+def checkforconnected(connection):
obj = bpy.context.object
me = obj.data
bm = bmesh.from_edit_mesh(me)
@@ -470,9 +470,9 @@ def checkforconnected(conection):
for v in bm.verts:
if v.select:
v_active = v
- if conection == 'faces':
+ if connection == 'faces':
linked = v_active.link_faces
- elif conection == 'edges':
+ elif connection == 'edges':
linked = v_active.link_edges
bmesh.update_edit_mesh(obj.data)