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:
authorAntonio Vazquez <blendergit@gmail.com>2019-08-30 21:52:43 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-08-30 21:53:01 +0300
commit5b547932fa95c2098b4967e25caadfe43846f0c7 (patch)
tree6a23b6f1444860b2df27210c81b113b5ba4d0bc5 /release/scripts
parentdacc773c29728c85d84715e9e852c88a7305345d (diff)
GPencil: Fix move_to_layer menu in Stroke context menu
Missing in previous commit
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index c6dd6aed38d..c8bd2a14fe2 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -6371,7 +6371,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(Menu):
col.separator()
# Layer and Materials operators
- col.operator_menu_enum("gpencil.move_to_layer", "layer", text="Move to Layer")
+ col.menu("GPENCIL_MT_move_to_layer")
col.menu("VIEW3D_MT_assign_material")
col.operator_menu_enum("gpencil.stroke_arrange", "direction", text="Arrange Strokes")