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:
authorAntonioya <blendergit@gmail.com>2018-08-24 16:47:25 +0300
committerAntonioya <blendergit@gmail.com>2018-08-24 16:47:25 +0300
commitedbe334ae91504f49ad13a09b480804f929e65a4 (patch)
tree945e4e3e234054ac45efbbe31de80c9879654429
parent9b41ad288a6edfe5497627ea1154d0f214ba4261 (diff)
GP: Add arrange strokes to edit specials menu
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e9738458353..35fb3afb5a6 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4952,6 +4952,9 @@ class VIEW3D_MT_gpencil_edit_specials(Menu):
layout.operator("gpencil.stroke_split", text="Split")
layout.separator()
+ layout.operator_menu_enum("gpencil.stroke_arrange", "direction", text="Arrange Strokes")
+
+ layout.separator()
layout.operator("gpencil.stroke_join", text="Join").type = 'JOIN'
layout.operator("gpencil.stroke_join", text="Join & Copy").type = 'JOINCOPY'