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>2020-07-21 13:34:57 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-07-21 13:36:22 +0300
commit1c0fa3aff6844bba4bc0fca985d8138385933874 (patch)
tree0d8d486c912eb934131b4333052754a2881924ae /release/scripts/startup/bl_ui/properties_grease_pencil_common.py
parent494a6a0bf2c9141251d7dbae9dc51acd42ebc702 (diff)
GPencil: Reorganize Snap pie menu
Put the options in the same position of meshes. related to T79094
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_grease_pencil_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 55b6f76632f..4d6ddb55f24 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -299,7 +299,9 @@ class GPENCIL_MT_snap_pie(Menu):
text="Selection to Cursor (Keep Offset)",
icon='RESTRICT_SELECT_OFF'
).use_offset = True
+ pie.separator()
pie.operator("view3d.snap_cursor_to_center", text="Cursor to World Origin", icon='CURSOR')
+ pie.separator()
class GPENCIL_MT_move_to_layer(Menu):