[Bf-blender-cvs] [78ebb59604b] blender2.8: GP: Reorganize Drawing Plane options

Antonioya noreply at git.blender.org
Sat Nov 10 13:19:32 CET 2018


Commit: 78ebb59604b5fe13c2fdd9393c8575ca56feb672
Author: Antonioya
Date:   Sat Nov 10 13:19:20 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB78ebb59604b5fe13c2fdd9393c8575ca56feb672

GP: Reorganize Drawing Plane options

===================================================================

M	source/blender/makesrna/intern/rna_sculpt_paint.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index e6ed3fdf6e3..4ea514295fb 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -86,9 +86,9 @@ static EnumPropertyItem rna_enum_gpencil_weight_brush_items[] = {
 
 static const EnumPropertyItem rna_enum_gpencil_lock_axis_items[] = {
 	{GP_LOCKAXIS_VIEW, "VIEW", ICON_RESTRICT_VIEW_ON, "View", "Align strokes to current view plane"},
-	{GP_LOCKAXIS_X, "AXIS_X", ICON_AXIS_SIDE, "Y-Z Plane", "Project strokes to plane locked to X"},
-	{GP_LOCKAXIS_Y, "AXIS_Y", ICON_AXIS_FRONT, "X-Z Plane", "Project strokes to plane locked to Y"},
-	{GP_LOCKAXIS_Z, "AXIS_Z", ICON_AXIS_TOP, "X-Y Plane", "Project strokes to plane locked to Z"},
+	{GP_LOCKAXIS_Y, "AXIS_Y", ICON_AXIS_FRONT, "Front (X-Z)", "Project strokes to plane locked to Y"},
+	{GP_LOCKAXIS_X, "AXIS_X", ICON_AXIS_SIDE, "Side (Y-Z)", "Project strokes to plane locked to X"},
+	{GP_LOCKAXIS_Z, "AXIS_Z", ICON_AXIS_TOP, "Top (X-Y)", "Project strokes to plane locked to Z"},
 	{0, NULL, 0, NULL, NULL}
 };
 #endif



More information about the Bf-blender-cvs mailing list