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:
authorJoshua Leung <aligorith@gmail.com>2016-05-09 08:23:15 +0300
committerJoshua Leung <aligorith@gmail.com>2016-05-09 08:23:36 +0300
commitdc4c3ce592a7db9269b3f78dd6d5b2cdbb5a210c (patch)
tree3b72f01a3848f5fa0d9827e6d651d9410d4134a0 /release
parent0578d3ef3e53faa447880bb939aa33272464cef1 (diff)
GPencil: Added operators to select first and last points of strokes
These are useful for removing overshoots at the end of closed strokes (for fills)
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index b4525d4f498..2b92f20dcf6 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -992,6 +992,11 @@ class VIEW3D_MT_select_gpencil(Menu):
layout.separator()
+ layout.operator("gpencil.select_first")
+ layout.operator("gpencil.select_last")
+
+ layout.separator()
+
layout.operator("gpencil.select_more")
layout.operator("gpencil.select_less")