Cleanup: format

This commit is contained in:
Campbell Barton
2023-10-23 10:13:33 +11:00
parent 351e993454
commit 9762af060d
2 changed files with 6 additions and 4 deletions
@@ -4610,7 +4610,7 @@ def km_grease_pencil_edit(params):
{"properties": [("type", "ALL_FRAMES")]}),
# Keyframe Menu
op_menu("VIEW3D_MT_edit_greasepencil_animation", {"type": 'I', "value": 'PRESS'}),
# Transform Actions.
*_template_items_transform_actions(params, use_bend=True, use_mirror=True, use_tosphere=True, use_shear=True),
("transform.transform", {"type": 'S', "value": 'PRESS', "alt": True},
@@ -7277,6 +7277,7 @@ def km_3d_view_tool_shear(params):
]},
)
def km_3d_view_tool_bend(params):
return (
"3D View Tool: Bend",
@@ -7288,6 +7289,7 @@ def km_3d_view_tool_bend(params):
]},
)
def km_3d_view_tool_measure(params):
return (
"3D View Tool: Measure",
+3 -3
View File
@@ -5807,9 +5807,9 @@ class VIEW3D_MT_edit_greasepencil(Menu):
layout = self.layout
layout.menu("VIEW3D_MT_transform")
layout.menu("VIEW3D_MT_mirror")
layout.separator()
layout.menu("VIEW3D_MT_edit_greasepencil_delete")
@@ -5823,7 +5823,7 @@ class VIEW3D_MT_edit_greasepencil_stroke(Menu):
layout.separator()
layout.operator("grease_pencil.cyclical_set", text="Toggle Cyclic").type='TOGGLE'
layout.operator("grease_pencil.cyclical_set", text="Toggle Cyclic").type = 'TOGGLE'
class VIEW3D_MT_edit_curves(Menu):