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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-19 09:07:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-19 09:07:46 +0300
commit548fb8103549c85ad007266016d401e48ca74e3b (patch)
tree21f862a7b7bf9dc43295b0f2279752c4a2044d54 /release
parentfb9fcaa50768d1d3f7ff7a724a74eb169c95e288 (diff)
Cleanup: trailing commas
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e04e1285256..ba519cd6aed 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3319,7 +3319,7 @@ class VIEW3D_MT_edit_mesh_context_menu(Menu):
col.separator()
- col.operator("mesh.extrude_vertices_move", text="Extrude Vertices"),
+ col.operator("mesh.extrude_vertices_move", text="Extrude Vertices")
col.operator("mesh.bevel", text="Bevel Vertices").vertex_only = True
if selected_verts_len > 1:
@@ -3365,7 +3365,7 @@ class VIEW3D_MT_edit_mesh_context_menu(Menu):
col.separator()
- col.operator("mesh.extrude_edges_move", text="Extrude Edges"),
+ col.operator("mesh.extrude_edges_move", text="Extrude Edges")
col.operator("mesh.bevel", text="Bevel Edges").vertex_only = False
if selected_edges_len >= 2:
col.operator("mesh.bridge_edge_loops")
@@ -3429,11 +3429,11 @@ class VIEW3D_MT_edit_mesh_context_menu(Menu):
col.separator()
- col.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Faces"),
- col.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals"),
- col.operator("mesh.extrude_faces_move", text="Extrude Individual Faces"),
+ col.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Faces")
+ col.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals")
+ col.operator("mesh.extrude_faces_move", text="Extrude Individual Faces")
- col.operator("mesh.inset"),
+ col.operator("mesh.inset")
col.operator("mesh.poke")
if selected_faces_len >= 2:
@@ -3523,7 +3523,7 @@ class VIEW3D_MT_edit_mesh_vertices(Menu):
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator("mesh.extrude_vertices_move", text="Extrude Vertices"),
+ layout.operator("mesh.extrude_vertices_move", text="Extrude Vertices")
layout.operator("mesh.bevel", text="Bevel Vertices").vertex_only = True
layout.separator()
@@ -3610,7 +3610,7 @@ class VIEW3D_MT_edit_mesh_edges(Menu):
layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator("mesh.extrude_edges_move", text="Extrude Edges"),
+ layout.operator("mesh.extrude_edges_move", text="Extrude Edges")
layout.operator("mesh.bevel", text="Bevel Edges").vertex_only = False
layout.operator("mesh.bridge_edge_loops")
@@ -3691,9 +3691,9 @@ class VIEW3D_MT_edit_mesh_faces(Menu):
layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Faces"),
- layout.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals"),
- layout.operator("mesh.extrude_faces_move", text="Extrude Individual Faces"),
+ layout.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Faces")
+ layout.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals")
+ layout.operator("mesh.extrude_faces_move", text="Extrude Individual Faces")
layout.separator()